body {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif; margin: 0; padding: 15px;
}
.login-card {
    background: #ffffff;
    border-radius: 50px;
    padding: 60px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.logo-img {
    width: 300px;
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}
.app-title {
    color: #065f46;
    font-weight: 800;
    letter-spacing: -1.5px;
    font-size: 2rem;
    margin-bottom: 8px;
}
.school-title {
    color: #059669;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.tagline-infaq {
    font-style: italic;
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 15px 25px;
    border-left: 4px solid #10b981;
    background: #f8fafc;
    border-radius: 15px;
    text-align: left;
}

@media (max-width: 576px) {
    .login-card { padding: 40px 20px; border-radius: 35px; }
    .logo-img { width: 200px; }
    .app-title { font-size: 1.7rem; }
    .school-title { font-size: 1rem; letter-spacing: 1px; }
}

.role-slider {
    background: #f1f5f9; border-radius: 60px; padding: 8px;
    display: flex; position: relative; margin-bottom: 35px;
    border: 1px solid #e2e8f0;
}
.role-btn {
    flex: 1; z-index: 2; cursor: pointer; padding: 16px;
    font-weight: 700; transition: 0.3s; font-size: 1.1rem;
    color: #64748b;
}
.slider-active {
    position: absolute; width: calc(50% - 8px); height: calc(100% - 16px);
    background: #10b981; border-radius: 60px; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1; box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
}
.input-box {
    background: #f8fafc; border: 2px solid #e2e8f0;
    border-radius: 20px; padding: 12px 25px; margin-bottom: 20px;
    transition: 0.3s;
}
.input-box:focus-within {
    border-color: #10b981; background: #ffffff;
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.1);
}
.input-box select, .input-box input {
    background: transparent; border: none; color: #1e293b; width: 100%;
    padding: 10px; outline: none; font-weight: 600; font-size: 1.1rem;
}
.btn-masuk {
    background: #10b981; color: white; font-weight: 800; border-radius: 20px;
    padding: 20px; width: 100%; border: none; transition: 0.3s;
    font-size: 1.2rem; letter-spacing: 1px;
    box-shadow: 0 12px 20px -5px rgba(16, 185, 129, 0.4);
}
.btn-masuk:hover {
    background: #059669; transform: translateY(-3px);
    box-shadow: 0 25px 30px -10px rgba(16, 185, 129, 0.5);
}
.text-active { color: white !important; }
.footer-text { font-size: 0.9rem; margin-top: 40px; color: #94a3b8; }
.dev-name { color: #065f46; font-weight: 800; text-decoration: none; }
