:root {
    --primary-blue: #5c59f0;
    --text-main: #111827;
    --text-light: #6b7280;
    --bg-gray: #f9fafb;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

.auth-container { display: flex; min-height: 100vh; }

/* Left Side Styling */
.auth-info-side {
    flex: 1;
    background-color: #fcfdfe;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.info-content { max-width: 480px; }

.auth-badge {
    color: var(--primary-blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    background: #f0f2ff;
    padding: 5px 12px;
    border-radius: 20px;
}

.auth-info-side h1 { font-size: 40px; margin-top: 25px; line-height: 1.2; color: var(--text-main); }
.text-blue { color: var(--primary-blue); }
.auth-subtitle { color: var(--text-light); margin: 20px 0 40px; line-height: 1.6; }

.auth-features { display: flex; flex-direction: column; gap: 25px; }
.feat-item { display: flex; gap: 15px; }
.feat-icon { 
    width: 24px; height: 24px; border-radius: 6px; 
    display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.blue-bg { background: #e0e7ff; }
.purple-bg { background: #f3e8ff; }
.feat-text strong { display: block; font-size: 14px; margin-bottom: 2px; }
.feat-text p { font-size: 13px; color: var(--text-light); }

.auth-trust-pill {
    margin-top: 60px; display: flex; align-items: center; gap: 15px;
    background: white; padding: 15px 25px; border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); width: fit-content;
}
.avatar-group span { width: 28px; height: 28px; background: #e5e7eb; border-radius: 50%; border: 2px solid white; margin-right: -10px; display: inline-block; }
.auth-trust-pill p { font-size: 11px; color: #9ca3af; letter-spacing: 0.5px; }

/* Right Side Styling */
.auth-form-side { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px; }
.auth-form-wrapper { width: 100%; max-width: 400px; }

.auth-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; margin-bottom: 50px; }
.logo-box { width: 28px; height: 28px; background: var(--primary-blue); border-radius: 6px; }

.auth-form-side h2 { font-size: 28px; margin-bottom: 8px; }
.form-desc { color: var(--text-light); font-size: 14px; margin-bottom: 35px; }

.auth-input-group { margin-bottom: 20px; }
.auth-input-group label { display: block; font-size: 11px; font-weight: 700; color: #9ca3af; margin-bottom: 8px; }
.label-row { display: flex; justify-content: space-between; align-items: center; }
.forgot-link { font-size: 10px; color: var(--primary-blue); text-decoration: none; font-weight: 700; }

input {
    width: 100%; padding: 14px; background: #f9fafb; border: 1px solid #f3f4f6;
    border-radius: 8px; font-size: 14px;
}

.auth-submit-btn {
    width: 100%; background: var(--primary-blue); color: white; padding: 16px;
    border: none; border-radius: 10px; font-weight: 700; font-size: 13px;
    cursor: pointer; margin-top: 20px; box-shadow: 0 4px 12px rgba(92, 89, 240, 0.3);
}

.auth-switch { text-align: center; margin-top: 25px; font-size: 13px; color: var(--text-light); }
.auth-switch a { color: var(--primary-blue); text-decoration: none; font-weight: 600; }

.auth-footer { margin-top: 60px; text-align: center; border-top: 1px solid #f3f4f6; padding-top: 30px; }
.compliance { font-size: 10px; color: #d1d5db; font-weight: 700; letter-spacing: 1px; margin-bottom: 15px; }
.back-link { font-size: 11px; color: #9ca3af; text-decoration: none; font-weight: 600; }