body {
    background-color: #c9d7f2;
    font-family: "Inter", sans-serif;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 15px;
}

.heading {
    margin-top: 100px;
}

.form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px #83909d;
    width: 30%;
    font-size: 20px;
}
.form-container h1 {
    margin-bottom: 1rem;
}
.form-container label {
    font-weight: 500;
    font-size: 14px;
}

.form-container input[type="text"] {
    border-radius: 0.25rem;
    border: 2px solid #7ac2d4;
    padding: 0.75rem;
    width: 90%;
    margin-top: 10px;
    margin-bottom: 20px;
}

.form-container input[type="password"] {
    border-radius: 0.25rem;
    border: 2px solid #7ac2d4;
    padding: 0.75rem;
    width: 90%;
    margin-top: 10px;
    margin-bottom: 5px;
}

.form-container button[type="submit"] {
    background-color: #11599c;
    border: none;
    border-radius: 0.25rem;
    color: #fff;
    padding: 0.47rem;
    width: 20%;
    cursor: pointer;
    margin-top: 15px;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    transition: background-color 0.3s ease-in-out;
}
.form-container button[type="submit"]:hover {
    background-color: #11599c;
}

.form-heading {
    background-color: #fff;
    padding: 10px 32px;
    border-radius: 0.5rem;
    box-shadow: 0 2px 2px #f61e21;
    width: 30%;
}

.form-heading h1 {
    color: #11599c;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 15px;
    text-align: center;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-center {
    margin: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.newaccount_text {
    padding-right: 15px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.newaccount_text a {
    text-decoration: none;
    color: #0055cc;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 15px;
    text-align: center;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-top: 1rem;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 15px;
    text-align: center;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    padding: 0.5rem;

    background: none;
    border: none;
    font-size: 1.25rem;
}

.alert-dismissible .btn-close:hover {
    color: #842029;
}

.modal-content .invalid-feedback,
.first_row .invalid-feedback,
.invalid-feedback {
    display: block;
    color: red;
    margin-top: 8px;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    text-align: left;
}

.form-label span {
    color: #ff002b;
}

.password-toggle {
    position: absolute;
    top: 58.4%;
    right: 37.5%;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
    animation: fadeIn 0.5s;
}

.modal-content {
    background-color: #fefefe;
    margin: 7% auto;
    padding: 20px 20px;
    /* border: 1px solid #888; */
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: -7px -7px 10px rgba(0, 0, 0, 0.15),
        7px 7px 10px rgba(0, 0, 0, 0.15);

    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 26px;
    text-align: left;

    color: #000000;
    animation: slideDown 0.5s;
}

/* Keyframes for animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20%);
    }
    to {
        transform: translateY(0);
    }
}

.first_row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.modal-content p {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    color: #000000;
}

.modal-content input {
    width: 100%;
    padding: 5px 5px;
    border: 0.5px solid #6cc3be;
    border-radius: 7px;
}

.modal-content .row .form input,
.modal-content .first_row .form input {
    width: 100%;
    padding: 8px 10px;
    border: 0.5px solid #6cc3be;
    border-radius: 7px;
}
.form {
    width: 95%;
}

.modal-content label {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 28px;
    text-align: left;
    color: #000000;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 220px;
    padding-top: 45px;
    padding-bottom: 10px;
}

.btn-action {
    width: 30%;
    background: #11599c;
    /* padding: 7px 10px; */
    padding: 0.45rem;
    border-radius: 0.25rem;
    /* border-radius: 7px; */
    border: none;
    /* Add New Asset (text) */
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    color: #ffffff;
}

.btn-submit {
    width: 30%;
    background: #11599c;
    /* padding: 7px 10px;
    border-radius: 7px; */
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: none;
    /* Add New Asset (text) */
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    color: #ffffff;
}

.otp-section .buttons {
    padding-top: 25px;
}
.mail_icon {
    display: flex;
    justify-content: center;
}
.otp-inputs {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.otp-field {
    width: 40px;
    height: 40px;
    font-size: 18px;
    text-align: center;
    border: 1px solid #dddddd;
    border-radius: 4px;
    margin: 0 5px;
    outline: none;
}

.otp-field:focus {
    border-color: #4caf50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.2);
}

.hidden {
    display: none;
}

.otp-section h5 {
    margin: 0;
    padding: 2px 0;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    /* color: #06299b; */
    color: #000000;
}

.otp-section h4 {
    margin: 0;
    padding: 10px 0;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    color: #11599c;
}

.suce h4 {
    margin: 0;
    padding: 10px 0;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    color: #11599c;
}

.resend_otp {
    display: flex;
    justify-content: end;
    padding-top: 3px;
    padding-right: 25px;
}

.text_email {
    padding-top: 10px;
}

.resend_otp a {
    color: #4caf50;
}

.reset_icon {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.otpverify_icon {
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.otp_show {
    padding-bottom: 50px;
}
.row h4 {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    color: #11599c;
    padding-bottom: 40px;
    padding-top: 15px;
}

.content {
    opacity: 1;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader-overlay.hidden {
    display: none;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 10px solid #11599c;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}



.show-icon{
    position: absolute;
    top: 53%;
    transform: translateY(-50%);
    cursor: pointer;
    right: 40px;
    i {
        font-size: 16px;
        color: #7AC2D4;
    }
}
.fa-eye{
    position: absolute;
            transform: translateY(-85%);
            cursor: pointer;
            right: 2px;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
