.auth-access-section {
    padding: 3.5rem 0 4.5rem;
    background: #fff;
}

.auth-access-container {
    max-width: 760px;
}

.auth-access-card {
    overflow: hidden;
    box-shadow: 0 10px 34px rgba(15, 23, 42, .09);
    border: 1px solid rgba(15, 23, 42, .06) !important;
}

.auth-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid #e6e9ee;
    background: #f8fafc;
}

.auth-tab {
    position: relative;
    padding: 1.1rem 1rem;
    color: #667085;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease;
}

.auth-tab:hover {
    color: #111827;
    background: #fff;
}

.auth-tab.is-active {
    color: #111827;
    background: #fff;
}

.auth-tab.is-active::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: #ffb000;
}

.auth-heading {
    margin-bottom: 1.75rem;
}

.auth-heading h1 {
    margin-bottom: .45rem;
    font-size: clamp(1.65rem, 4vw, 2rem);
    font-weight: 600;
}

.auth-heading p {
    margin: 0 auto;
    max-width: 560px;
    color: #667085;
    font-size: .95rem;
}

.auth-access-card .form-label {
    color: #344054;
    font-weight: 600;
}

.auth-access-card .form-control {
    min-height: 48px;
    border-color: #d0d5dd;
    border-radius: 9px;
}

.auth-access-card .form-control:focus {
    border-color: #ffb000;
    box-shadow: 0 0 0 .2rem rgba(255, 176, 0, .15);
}

.password-field {
    position: relative;
}

.password-field .form-control {
    padding-right: 3.25rem;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: .6rem;
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    color: #667085;
    background: transparent;
    transform: translateY(-50%);
}

.password-toggle:hover,
.password-toggle:focus-visible {
    color: #111827;
    background: #f2f4f7;
    outline: none;
}

.auth-submit {
    min-height: 48px;
    border-radius: 9px;
    font-weight: 700;
}

.recaptcha-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .45rem;
}

.form-text,
.password-match-message {
    display: block;
    margin-top: .35rem;
    color: #667085;
    font-size: .82rem;
}

.password-match-message.is-valid {
    color: #198754;
}

.password-match-message.is-invalid {
    color: #dc3545;
}

@media (max-width: 575.98px) {
    .auth-access-section {
        padding: 1.5rem .25rem 2.5rem;
    }

    .auth-access-card .card-body {
        padding: 1.5rem !important;
    }

    .auth-tab {
        padding: 1rem .5rem;
        font-size: .92rem;
    }

    .g-recaptcha {
        transform: scale(.88);
        transform-origin: center;
    }
}
