html, body, main {
    height: 100%;
    margin: 0;
    line-height: normal !important;
    font-family: "Inter", serif;
}

.form-description {
    margin-top: 0.25rem;
    color: #7E7D8D !important;
    font-size: 12px !important;
}

.language-dropdown li:hover {
    background-color: rgba(0, 109, 192, 0.08);
}

.language-dropdown .dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    border-color: #80bdff;
}

.dropdown-toggle::after {
    display: none;
}

.rounded-4 {
    border-radius: 12px;
}

/* Custom Button CSS */
.btn-custom {
    line-height: 1.75;
    font-size: 14px;
    border-radius: 8px;
    padding: 8px 16px;
    background-color: rgb(0, 109, 192);
}

.btn-custom:hover {
    background-color: rgb(0, 95, 168);
}

.btn-custom:focus,
.btn-custom:active {
    background-color: rgb(0, 85, 150);
    border-color: rgb(0, 85, 150);
}

.btn-custom:disabled {
    background-color: rgb(0, 109, 192);
    opacity: 0.24;
}

/* Logo Styling */
.logo {
    width: 292px;
    height: 32px;
}

/* MDB Outline Field Replica CSS */

.form-outline {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-outline .form-control {
    border: 1px solid #d9e5f0;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    background: transparent;
    transition: all 0.2s ease;
    font-size: 14px;
    line-height: 1.5;
    box-sizing: border-box;
    height: 40px;
}

.form-outline .form-control:focus {
    border-color: rgb(0, 109, 192);

    outline: none;
}

.form-outline .form-label {
    position: absolute;
    top: -0.5rem;
    left: 0.75rem;
    background: white;
    padding: 0 0.25rem;
    margin: 0;
    font-size: 14px;
    color: #6c757d;
    pointer-events: none;
    transform-origin: left center;
    transition: all 0.2s ease;
    transform: translateY(1.2rem);
    z-index: 1;
    line-height: 1;
}

/* Active state (focused or has content) */

.form-outline .form-control:focus {
    box-shadow: none;
}

.form-outline .form-control:focus + .form-label,
.form-outline .form-control:not(:placeholder-shown) + .form-label,
.form-outline .form-control.active + .form-label {
    transform: translateY(0) scale(0.85);
    color: rgb(0, 109, 192);
    font-weight: 500;
    box-shadow: none;
}

.form-outline .form-control:focus + .form-label {
    color: rgb(0, 109, 192);
    box-shadow: none;
}

/* Error state */

.form-outline .form-control.invalid {
    border-color: #dc3545;
}

.form-outline .form-control.invalid:focus {
    border-color: #dc3545;
    box-shadow: none;
}

.form-outline .form-control.invalid + .form-label,
.form-outline .form-control.invalid:focus + .form-label {
    color: #dc3545;
    box-shadow: none;
}

.form-outline .validation-message {
    color: #dc3545;
    text-align: start;
}

/* Textarea adjustments */

.form-outline textarea.form-control {
    padding: 0.5rem 0.75rem;
    min-height: 80px;
    resize: vertical;
    height: auto;
    line-height: 1.5;
}

/* Select adjustments */

.form-outline select.form-control {
    cursor: pointer;
}

.form-outline select.form-control:not([multiple]) {
    padding-right: 2rem;
}

/* Disabled state */

.form-outline .form-control:disabled {
    background-color: #e9ecef;
    opacity: 1;
}

.form-outline .form-control:disabled + .form-label {
    color: #6c757d;
}


/* Modal */
.modal-content {
    /*width: 412px;*/
    border-radius: 8px;
}

.modal-header {
    font-size: 16px;
    font-weight: 600;
}

.btn-close {
    font-size: 12px;
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
    margin-bottom: 20px;

    .btn-custom {
        background: #50cd89;
        width: 100%;
        border: none;
        border-radius: 8px;
        color: white;
    }
}

/* OTP Input Styling */
.otp-input {
    margin-right: 0.5rem;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #e2e2e2;
    color: #393939;
    text-align: center;
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.4px;
}

/* Larger OTP inputs on tablets and desktop */
@media (min-width: 576px) {
    .otp-input {
        width: 52px;
        height: 52px;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: -0.48px;
    }
}

.otp-input:active,
.otp-input:focus,
.otp-input:focus-visible {
    border: 2px solid #006dc0;
    outline: none;
}

.otp-input.filled {
    border: 2px solid #006dc0;
}

.otp-input.error {
    border: 2px solid #ff0038;
    color: #ff0038;
}


.modal-description-text {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    margin: 12px 29px;

    h2 {
        font-size: 18px;
        margin: 0.83em 0;
        line-height: 24px;
        font-weight: bold;
    }
}
