.auth-wrapper {
    background: #2d2a36;
    min-height: 100vh;
}
.auth-card {
    background: #23212b;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.auth-image {
    background: linear-gradient(180deg, #23212b 60%, #3a3750 100%);
    color: #fff;
    min-width: 320px;
    justify-content: space-between;
}
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}
.auth-form {
    background: #23212b;
    color: #fff;
    width: 100%;
    max-width: 400px;
}
.form-control.bg-secondary {
    background: #35334a !important;
    color: #fff !important;
    border-radius: 0.5rem;
}
.form-control:focus {
    border-color: #a78bfa;
    box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.25);
}
.btn-outline-light {
    border-color: #a78bfa;
    color: #fff;
}
.btn-outline-light:hover {
    background: #a78bfa;
    color: #fff;
}
.btn {
    border-radius: 0.5rem;
}
@media (max-width: 768px) {
    .auth-card {
        flex-direction: column;
        min-width: 100%;
    }
    .auth-image {
        display: none !important;
    }
    .auth-form {
        max-width: 100%;
        padding: 2rem 1rem;
    }
}