.auth-page {
    position: relative;
    background:
        linear-gradient(rgba(10, 18, 24, 0.55), rgba(10, 18, 24, 0.70)),
        url('../images/login-bus-bg.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.auth-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 28, 22, 0.30), rgba(0, 0, 0, 0.45));
    z-index: 1;
}

.auth-container {
    z-index: 2;
}

.auth-wrapper {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
}

.auth-visual {
    min-height: 620px;
    background:
        linear-gradient(180deg, rgba(19, 40, 31, 0.88), rgba(11, 20, 16, 0.95)),
        url('../images/login-bus-bg.jpg') center center / cover no-repeat;
    color: #fff;
    position: relative;
}

.auth-visual-content {
    padding: 48px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.auth-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
}

.auth-brand-badge i {
    font-size: 1.1rem;
}

.auth-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.auth-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 420px;
    margin-bottom: 28px;
}

.auth-feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}

.auth-feature-item i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.auth-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
}

.auth-input-group .input-group-text {
    background: #f8f9fa;
    border-right: 0;
}

.auth-input-group .form-control {
    border-left: 0;
    border-right: 0;
    box-shadow: none;
}

.auth-input-group .btn {
    border-left: 0;
}

.auth-input-group .form-control:focus {
    box-shadow: none;
}

.auth-forgot-link {
    color: #198754;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.auth-forgot-link:hover {
    color: #146c43;
    text-decoration: underline;
}

.auth-login-btn {
    border-radius: 14px;
    font-weight: 700;
    padding-top: 14px;
    padding-bottom: 14px;
}

.auth-mobile-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #198754, #0f5132);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

.auth-footer-note {
    border-top: 1px solid #eef1f4;
    padding-top: 18px;
}

@media (max-width: 991.98px) {
    .auth-wrapper {
        border-radius: 20px;
    }

    .auth-card {
        border-radius: 20px;
    }
}