/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.password-input-wrapper input {
    padding-right: 45px !important;
}

/* Field Row Layout */
.field-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.field-label {
    min-width: 76px;
    padding-right: 10px;
    font-size: 12px;
    font-weight: bolder;
    white-space: nowrap;
    position: relative;
}

.field-label .labelIconLeft {
    position: relative;
    top: -2px;
    right: 0;
}

.field-label .labelIconLeft img {
    vertical-align: top;
}

#forget_callout{
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 10px 0px;
    border-top: none;
}

#forget_section{
    background-repeat: repeat-x;
    background-position: top left;
    clear: none;
    display: block;
    width: 283px;
    height: 0px;
    margin-left: 25px;
}

#username, #code {
    width: 130px;
    margin-left: 20px;
    height: 17px;
}

#email{
    width: 200px;
}

#forget_password_callout{
    float: none;
    margin: 0 auto;
    max-width: fit-content;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

form#forgotPasswordForm{
        margin-right: 178px;
        display: flex;
        flex-direction: column;
        align-items: center;
}


#radio-input{
    display: flex;
    margin-left: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    margin-right: 20px;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
}

.radio-text {
    color: #333;
}

.radio-label input[type="radio"]:checked ~ .radio-text {
    font-weight: bold;
}

/* Error Messages */
.error-message {
    margin-left: 150px;
    color: #d32f2f;
    font-size: 12px;
    margin-top: 5px;
    display: none;
    max-width: 400px;
}

.error-message.show {
    display: block;
    animation: shake 0.3s;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

#code-error-message{
    margin-left: 50px;
}

/* Submit Button States */
#submitBtn {
    margin-left: 250px;
    width: 305px;
}

#forgot_password_contact_form{
    margin-left: 240px;
}

#submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .password-strength-container,
    .password-requirements,
    .password-feedback,
    .error-message {
        margin-left: 0;
        max-width: 100%;
    }
}
