* { box-sizing: border-box; margin: 0; padding: 0; }

body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, #0a1628 0%, #1565c0 50%, #ffffff 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
}

.login-wrapper {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}

.login-card {
background: #fff;
border-radius: 20px;
width: 100%;
max-width: 440px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.login-header {
background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
padding: 1.25rem 1.5rem;
display: flex;
align-items: center;
gap: 12px;
}

.logo-icon {
width: 44px;
height: 44px;
background: rgba(255,255,255,0.2);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.logo-icon svg { width: 26px; height: 26px; }

.header-text h5 {
color: #fff;
font-size: 1.05rem;
font-weight: 700;
margin: 0;
letter-spacing: 0.5px;
}

.header-text span {
color: rgba(255,255,255,0.75);
font-size: 0.75rem;
}

.login-body { padding: 1.75rem 1.5rem 1.5rem; }

.welcome-text h6 {
font-size: 1.1rem;
font-weight: 700;
color: #0d47a1;
margin-bottom: 4px;
}

.welcome-text p {
font-size: 0.8rem;
color: #607d8b;
margin-bottom: 1.25rem;
}

.divider {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 1.25rem;
}

.divider::before,
.divider::after {
content: '';
flex: 1;
height: 1px;
background: #e0e0e0;
}

.divider span {
font-size: 0.72rem;
color: #90a4ae;
white-space: nowrap;
font-weight: 500;
letter-spacing: 0.3px;
}

.form-group { margin-bottom: 1rem; }

.form-label {
display: block;
font-size: 0.78rem;
font-weight: 600;
color: #1565c0;
margin-bottom: 5px;
letter-spacing: 0.2px;
}

.form-input {
width: 100%;
padding: 0.65rem 0.9rem;
border: 1.5px solid #e0e8f5;
border-radius: 10px;
font-size: 0.88rem;
font-family: 'Inter', sans-serif;
color: #1a1a2e;
background: #f5f8ff;
outline: none;
transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
border-color: #1565c0;
background: #fff;
box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}

.form-input::placeholder { color: #b0bec5; font-size: 0.82rem; }

.input-wrapper {
position: relative;
}

.input-icon {
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
color: #90a4ae;
cursor: pointer;
font-size: 16px;
user-select: none;
}

.form-input.has-icon { padding-right: 2.5rem; }

.btn-signin {
width: 100%;
padding: 0.75rem;
background: linear-gradient(135deg, #1565c0, #0d47a1);
color: #fff;
border: none;
border-radius: 10px;
font-size: 0.9rem;
font-weight: 600;
font-family: 'Inter', sans-serif;
cursor: pointer;
margin-top: 0.25rem;
transition: opacity 0.2s, transform 0.15s;
letter-spacing: 0.3px;
}

.btn-signin:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-signin:active { transform: scale(0.98); }

.features-row {
display: flex;
justify-content: space-between;
gap: 8px;
margin-top: 1.25rem;
flex-wrap: wrap;
}

.feature-item {
display: flex;
align-items: center;
gap: 5px;
font-size: 0.72rem;
color: #607d8b;
font-weight: 500;
}

.feature-item svg {
width: 13px;
height: 13px;
color: #1565c0;
flex-shrink: 0;
}

.login-note {
text-align: center;
font-size: 0.7rem;
color: #90a4ae;
margin-top: 1rem;
line-height: 1.6;
}

.login-note strong { color: #1565c0; }

@media (max-width: 480px) {
body { padding: 0.5rem; align-items: flex-start; }
.login-card { border-radius: 14px; max-width: 100%; }
.carousel-wrapper { height: 160px; }
.login-body { padding: 1.25rem 1.1rem 1.1rem; }
.features-row { justify-content: center; gap: 10px; }
.welcome-text h6 { font-size: 1rem; }
}