/* =========================================================
   LOGIN PAGE (ADMIN STYLE MATCHED)
========================================================= */

.login-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--cream);
    font-family: "Manrope", sans-serif;
}

.login-box {
    width: 360px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.login-box h1 {
    margin-bottom: 24px;
    font-size: 26px;
    font-weight: 800;
    color: var(--green-dark);
}

.login-box input {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 14px;
    border-radius: 14px;
    border: 1px solid rgba(30, 30, 30, 0.12);
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.login-box input:focus {
    border-color: var(--green);
}

.login-box button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 999px;
    background: var(--green);
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease;
}

.login-box button:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.error {
    color: var(--red);
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}