body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: var(--bg);
    background-repeat: no-repeat; 
    background-size: cover; 
    /* background-attachment: fixed;  */
    background-position: center;
    background-color: #fff;
}
main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.title-passkey {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 35px;
}

form {
    margin-bottom: 35px;
}

.input-group-form {
    margin-bottom: 35px;
}

.passkey-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px;
    width: 44px;
    height: 44px;
    background: #FBD5DE;
    border-radius: 25px 0px 0px 25px;
}

.input-group-form input[name="passkey"] {
    padding: 10px 16px;
    width: 356px;
    /* height: 44px; */
    background: #FFFFFF;
    border-radius: 0px 25px 25px 0px;
}

.passkey-icon svg {
    width: 20px;
    height: 20px;
    color: #EB2F59;
}

form button.submit {
    padding: 8px 16px;
    width: 240px;
    height: 36px;
    background: #EB2F59;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
    border-radius: 25px;

    /* Text */
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.006em;
    color: #FFFFFF;

    transition: opacity 0.3s;
}
form button.submit:disabled {
    opacity: 0.75;
}

.whatispasskey {
    outline: none;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    background: transparent;
    color: #3267E3;
}

.popup-modal-help {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-modal-help h1 {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #0A0A0A;
}

.popup-modal-help button {
    outline: none;
    border: none;
    background: transparent;
}

.popup-modal-help button svg {
    width: 20px;
    height: 20px;
    stroke-width: 3px;
}

.popup-modal-help-label h3 {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #0A0A0A;
}

.popup-modal-help-label p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.006em;
    color: #616161;
}

.popup-modal-help-button {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    /* padding: 0px 24px 12px 12px; */
    gap: 12px;
}

.popup-modal-help-button button {
    padding: 8px 20px;
    /* width: 100px; */
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
    border-radius: 6px;

    /* Text */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.006em;
    color: #0A0A0A;
}

.popup-modal-help-button a {
    text-decoration: none;
    padding: 8px 20px;
    background: #F4D24C;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
    border-radius: 6px;

    /* Text */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.006em;
    color: #0A0A0A;
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    .title-passkey {
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 16px;
    }

    form {
        margin-bottom: 24px;
    }

    .input-group-form {
        margin-bottom: 24px;
    }

    .input-group-form input[name="passkey"] {
        width: 256px;
    }

    form button.submit {
        width: 120px;
        height: 36px;
        box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);                
    }

    .whatispasskey {
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.006em;
    }
}