:root { --primary-color: #0dcaf0; --accent-gradient: linear-gradient(135deg, #0dcaf0 0%, #0083fe 100%); }

body { background: #f4f7fe; font-family: 'Plus Jakarta Sans',sans-serif; }

.auth-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }

.login-box { background: #fff; border-radius: 24px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); display: flex; overflow: hidden; max-width: 900px; width: 100%; min-height: 550px; }

.login-brand-side { background: var(--accent-gradient); width: 45%; padding: 40px; display: flex; flex-direction: column; justify-content: center; color: #fff; position: relative; }

.login-form-side { width: 55%; padding: 60px; background: #fff; }

.form-control { height: 52px; border-radius: 12px; border: 1.5px solid #eee; padding: 10px 20px; transition: all 0.3s; background-color: #fcfcfc; }

.form-control:focus { border-color: var(--primary-color); box-shadow: 0 0 0 4px rgba(13, 202, 240, 0.1); background-color: #fff; }

/* Styling khusus untuk container password */
.password-field { position: relative; }

.password-toggle { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); cursor: pointer; color: #a0aec0; transition: all 0.2s; z-index: 10; padding: 5px; }

.password-toggle:hover { color: var(--primary-color); }

.btn-login { height: 52px; border-radius: 12px; background: var(--accent-gradient); border: none; font-weight: 600; letter-spacing: 0.5px; transition: all 0.3s; }

.btn-login:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(13, 202, 240, 0.3); }

.welcome-text h2 { font-weight: 800; color: #1a202c; }

@media (max-width: 768px) {
  .login-brand-side { display: none; }
  .login-form-side { width: 100%; padding: 40px 25px; }
  .login-box { max-width: 450px; }
}
