/* Auth Modal Styles */
.auth-modal .auth-modal-dialog {
    max-width: 950px;
}

.auth-modal .auth-modal-content {
    border: none;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(20, 137, 154, 0.25);
    position: relative;
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.auth-modal-close .btn-close {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 0.6rem;
}

.auth-modal-left {
    background: #ffffff;
    color: #23313f;
    padding: 3rem 2rem;
    min-height: 100%;
    border-right: 1px solid #eef2f4;
}

.auth-modal-heading {
    color: #14899a;
}

.auth-modal-text {
    color: #5f6c72;
    line-height: 1.6;
}

.auth-modal-logo {
    width: 11rem;
    max-width: 100%;
    height: auto;
}

.auth-modal-highlights li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #56616c;
    display: flex;
    align-items: center;
}

.auth-modal-highlights li i {
    color: #14899a;
}

.auth-modal-right {
    background-color: #ffffff;
}

.auth-modal-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.auth-modal-title-centered h3 {
    color: #103944;
    font-size: 1.8rem;
}

.auth-modal .input-group {
    width: 100%;
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap !important;
    gap: 0;
    flex-direction:row !important;
}

.auth-modal .input-group > .form-control,
.auth-modal .input-group > .form-select {
    font-size: 1rem;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.auth-modal .input-group > .btn {
    border-color: #ced4da;
    border-left: none;
    color: #14899a;
    background-color: #f8fbfc;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.9rem;
    white-space: nowrap;
}

.auth-modal .input-group > .btn i {
    pointer-events: none;
    font-size: 1rem;
}

.auth-form .invalid-feedback {
    display: none;
}

.auth-form.was-validated .form-control:invalid ~ .invalid-feedback,
.auth-form.was-validated .form-select:invalid ~ .invalid-feedback,
.auth-form.was-validated .form-check-input:invalid ~ .invalid-feedback {
    display: block;
}

.auth-form .form-control.is-invalid ~ .invalid-feedback,
.auth-form .form-select.is-invalid ~ .invalid-feedback,
.auth-form .form-check-input.is-invalid ~ .invalid-feedback {
    display: block;
}

.auth-modal .btn-close {
    background: transparent;
}

@media (max-width: 991px) {
    .auth-modal .auth-modal-dialog {
        margin: 1rem;
    }

    .auth-modal-left {
        padding: 2rem 1.5rem;
    }

    .auth-modal-logo {
        width: 8.5rem;
    }
}

@media (max-width: 767px) {
    .auth-modal-left {
        text-align: center;
    }

    .auth-modal-left ul {
        text-align: left;
    }

    .auth-modal-highlights {
        display: none;
    }

    .auth-modal-logo {
        width: 7rem;
    }
}

@media (max-width: 576px) {
    .auth-modal .input-group {
        flex-wrap: nowrap;
    }

    .auth-modal-left {
        padding: 2rem 1rem;
    }

    .auth-modal-title-centered h3 {
        font-size: 1.5rem;
    }

    .auth-modal-logo {
        width: 6rem;
    }
}

