.auth-section {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}

.auth-card {
    animation: authFadeIn 0.35s ease;
}

.auth-logo {
    max-height: 56px;
    width: auto;
}

.auth-method-toggle .auth-toggle-btn {
    border-radius: 0.5rem !important;
    box-shadow: none !important;
    font-weight: 600;
}

.auth-method-toggle .auth-toggle-btn.active {
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08) !important;
}

.auth-method-toggle .auth-toggle-btn:not(.active) {
    background: transparent !important;
    border-color: transparent !important;
}

.auth-input-group .form-control,
.auth-input-group .input-group-text {
    background-color: #f8f9fc;
    border-color: #e9ecef;
    min-height: 48px;
}

.auth-input-group .form-control:focus {
    box-shadow: none;
    border-color: #6730e3;
    background-color: #fff;
}

.auth-form .btn-block {
    min-height: 48px;
    font-weight: 600;
}

.auth-code-input {
    font-size: 1.5rem;
    letter-spacing: 0.5em;
    min-height: 56px;
    font-weight: 600;
}

.color-primary-bg {
    background-color: #6730e3 !important;
}

@keyframes authFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
