.forgot-password-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.forgot-password-input {
    width: 100% !important;
    padding: 0px 20px !important;
    margin-right: 0px;
    border: 2px solid #54595f !important;
    border-radius: 4px !important;
    background-color: #505050FA;
    color: #fff;
    margin-bottom: 10px;
    height: 47px;
}
::placeholder {
  color: #fff;
  opacity: 0.7; 
}

::-ms-input-placeholder { 
  color: #fff;
}

.forgot-password-submit {
    width: 100% !important;
    padding: 10px !important;
    background-color: #2CA6EC !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
}

.forgot-password-submit:hover {
    background-color: #27ABFA !important;
}

.forgot-password-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: #323232;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: none;
    max-width: 300px;
    width: 80%;
    text-align: center;
    display: none;
}

.forgot-password-popup.show {
    display: block;
    animation: slide-in-up 0.3s ease-out;
}

.forgot-password-popup.slide-out-down {
    animation: slide-out-down 0.3s ease-out;
}

.forgot-password-popup-message {
    margin: 0;
    padding: 20px;
    font-size: 1em;
}

.forgot-password-popup-message h3 {
    margin: 0 0 10px;
}

.forgot-password-popup-message p {
    margin: 0;
    color: #fff;
}

.forgot-password-success-message {
    color: green;
}

.forgot-password-error-message {
    color: #fff;
}

/* Keyframes for slide animations */
@keyframes slide-in-up {
    from {
        transform: translate(-50%, 50%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@keyframes slide-out-down {
    from {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
    to {
        transform: translate(-50%, 50%);
        opacity: 0;
    }
}
.reset-password-form,
.verify-code-form,
.new-password-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.reset-password-input {
    width: 100% !important;
    padding: 6px 16px !important;
    border: 2px solid #54595F !important;
    border-radius: 4px !important;
    background: #505050FA;
    color: #fff;
    font-size: 16px;
    height: 47px;
}

.reset-password-submit, .verify-code-submit, .save-password-submit {
    width: 100% !important;
    padding: 10px !important;
    background-color: #2CA6EC !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
}
.reset-password-submit:hover, .verify-code-submit:hover, .save-password-submit:hover {
    background-color: #27ABFA !important;
}

.reset-password-notice {
    color: #aaa;
    font-size: 0.9em;
    text-align: center;
}

.reset-password-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: #323232;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border: 0px solid #888;
    max-width: 300px;
    width: 80%;
    text-align: center;
    display: none;
    color: #fff;
}

.reset-password-popup.show {
    display: block;
    animation: slide-in-up 0.3s ease-out;
}

.reset-password-popup-message {
    margin: 0;
    padding: 20px;
    font-size: 1em;
}

.reset-password-popup-message h3 {
    margin: 0 0 10px;
}

.reset-password-popup-message p {
    margin: 0;
    color: #fff;
}

#password-validation-message {
    color: red;
    font-size: 0.9em;
    margin: 10px 0;
    text-align: center;
}


@keyframes slide-in-up {
    from {
        transform: translate(-50%, 50%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@keyframes slide-out-down {
    from {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
    to {
        transform: translate(-50%, 50%);
        opacity: 0;
    }
}
#loadingOverlayfr {
    position: fixed;
    display:none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loadingMessagefr {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.spinners {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 20px;
    font-family: 'Arial', sans-serif;
    color: #fff;
    animation: text-blink 1.5s infinite ease-in-out;
}

@keyframes text-blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}