:root {
    --violet-primary: #7c3aed;
    --violet-dark: #6d28d9;
    --violet-bg: #f5f3ff;
    --text-main: #1e293b;
    --text-muted: #64748b;
}

body, html {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--text-main);
}

.auth-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Left Side Panel */
.auth-side-info {
    flex: 1;
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.brand-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.brand-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    margin-right: 8px;
}

.benefit-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Right Side Form */
.auth-form-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.form-box {
    width: 100%;
    max-width: 440px;
}

.text-violet { color: var(--violet-primary); }

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-control {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: var(--violet-primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.btn-violet {
    background-color: var(--violet-primary);
    border-color: var(--violet-primary);
    color: white;
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-violet:hover {
    background-color: var(--violet-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.3);
}

/* Success Alert Customization */
.alert-success {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    border-radius: 10px;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .auth-form-container { padding: 20px; }
}