/* ===============================
   REGISTER FORM STYLES
================================ */

.uqa-register-form-container,
.uqa-login-form-container,
.uqa-forgot-form-container {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
     
    @media (min-width: 1024px) {
        min-width: 735px;
        margin: 0 auto;
        gap: 30px;
    }
}
.uqa-login-form-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.uqa-form-body {
    display: flex;
    flex-direction: column;
    gap: 15px;

    @media (min-width: 640px) {
        gap: 25px;
    }
}

.uqa-fields {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.uqa-fields label {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #374151;
}

.uqa-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.uqa-input-icon {
    position: absolute;
    left: 16px;
    width: 16px;
    height: 16px;
    z-index: 1;
    pointer-events: none;
}

.uqa-password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.uqa-password-toggle img {
    width: 16px;
    height: 16px;
}

.uqa-fields input {
    width: 100%;
    border-radius: 16px;
    border: 1px solid #DEE2E6;
    background: #F9FAFB;
    padding: 10px 45px 10px 40px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #868E96;
    transition: border-color 0.3s ease;
}

.uqa-fields input:focus {
    outline: none;
    border-color: #2745D7;
}

.uqa-field input::placeholder {
    color: #868E96;
}

.uqa-form-error {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #dc2626;
    display: none;
}

/* Checkbox Styles */
.uqa-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.uqa-checkbox-wrapper input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    border-radius: 4px;
    border: 1px solid #DEE2E6;
    cursor: pointer;
}

.uqa-checkbox-label {
    font-size: 14px;
    font-weight: 400;
    color: #495057;
    cursor: pointer;
    line-height: 1.5;
}

.uqa-checkbox-label a {
    color: #2745D7;
    text-decoration: none;
}

.uqa-checkbox-label a:hover {
    text-decoration: underline;
}

/* reCAPTCHA Styles */
.uqa-recaptcha-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0px auto;
    align-items: center;
}
.uqa-recaptcha-wrapper-form {
    position: fixed !important;
    right: 0px;
    top: 90%;
    transform: translateY(-50%);
    z-index: 9999;
}


.g-recaptcha {
    /* transform: scale(0.95); */
    transform-origin: left;
}

.uqa-register-btn,
.uqa-forgot-btn {
    background: #FF0079;
    width: 100%;
    color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 16px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.uqa-register-btn:hover,
.uqa-forgot-btn:hover {
    background: #D61D72;
}

.uqa-register-btn:disabled,
.uqa-forgot-btn:disabled {
    background: #868E96;
    cursor: not-allowed;
}

/* Auth Link Styles */
.uqa-auth-link,.uqa-forgot-link {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #495057;
    text-align: center;
}

.uqa-auth-link a {
    color: #D61D72;
    text-decoration: none;
    font-weight: 600;
}
.uqa-forgot-link a {
    color: #2745D7;
    text-decoration: none;
    font-weight: 600;
}   
.uqa-auth-link a:hover,.uqa-forgot-link a:hover {
    text-decoration: underline;
}

/* Success/Error Messages */
.uqa-message {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
}

.uqa-message.success {
    background: #e6f4ea;
    color: #137333;
}

.uqa-message.error {
    background: #fdecea;
    color: #b3261e;
}
.uqa-notice {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #FF0079;
}
.uqa-or-continue {
    display: flex;
    align-items: center;
    gap: 50px;

    .uqa-divider {
        flex-grow: 1;
        height: 1px;
        background-color: #868E96;
    }
    .uqa-continue-text {
        font-size: 14px;
        line-height: 22px;
        font-weight: 400;
        color: #495057;
    }
}
.uqa-register-btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #4361EE;
    width: 100%;
    color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 16px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.uqa-register-btn-apple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #495057;
    width: 100%;
    color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 16px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.uqa-register-btn-google:hover {
    background: #365FCF;
}
.uqa-register-btn-apple:hover {
    background: #343A40;
}