/* ============================================================
   login.css  —  E-Numerasi | MIN 1 Trenggalek
   Migrasi 1-1 dari inline <style> pada portal.php native PHP
   ============================================================ */

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.login-card {
    background: white;
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    text-align: center;
    border: 1px solid #e2e8f0;
}

.logo-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo-row img {
    height: 45px;
    width: auto;
}

h5 {
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.subtitle {
    color: #059669;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Kotak Motivasi */
.motivation-box {
    background-color: #f8fafc;
    border-left: 4px solid #10b981;
    padding: 15px;
    margin-bottom: 30px;
    text-align: left;
    border-radius: 8px;
}

.motivation-box p {
    margin: 0;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
    font-style: italic;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.form-select {
    border-radius: 12px;
    padding: 14px 15px;
    border: 2px solid #f1f5f9;
    background-color: #f8fafc;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.form-select:focus {
    border-color: #10b981;
    box-shadow: none;
    background-color: #fff;
}

.btn-masuk {
    background-color: #10b981;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-weight: 700;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-masuk:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

.copyright {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.5;
}