/* =============================================================
   login.css  —  BUMM Login Page Styles
   ============================================================= */

:root {
    --primary-emerald: #064e3b;
    --accent-green:    #10b981;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #e5fff8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* ---------- CARD ---------- */
.login-card {
    background: white;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 45px 35px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.02);
    color: rgb(5, 41, 28);
}

/* ---------- LOGO ---------- */
.logo-login {
    width: 100px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.03));
}

/* ---------- LABEL ---------- */
.form-label {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* ---------- INPUT ---------- */
.input-group-text {
    background: rgba(230, 244, 236, 0.9);
    border: none;
    border-radius: 12px 0 0 12px;
    color: var(--primary-emerald);
}

.form-control {
    border-radius: 0 12px 12px 0;
    padding: 12px;
    border: none;
    background: rgba(230, 244, 236, 0.9);
    color: #1e293b;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.4);
    background: white;
}

/* ---------- BUTTON ---------- */
.btn-login {
    background: var(--accent-green);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    margin-top: 10px;
    cursor: pointer;
}

.btn-login:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

/* ---------- ALERT ERROR ---------- */
.alert {
    border-radius: 12px;
    font-size: 0.85rem;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    margin-bottom: 1rem;
}

/* ---------- FOOTER ---------- */
.footer-copyright {
    margin-top: 30px;
    font-size: 0.75rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 480px) {
    .login-card {
        margin: 20px;
        padding: 35px 25px;
    }
}
