/* ===== Base Layout ===== */
body {
    font-family: 'Poppins', sans-serif;
    background: #0B2C4D;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* ===== Login & Dashboard Cards ===== */
.login-box,
.dashboard {
    background: #ffffff;
    padding: 24px;
    border-radius: 10px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    box-sizing: border-box;
}

/* ===== Logo ===== */
.logo {
    width: 140px;
    max-width: 100%;
    margin: 0 auto 16px;
    display: block;
}

/* ===== Inputs & Buttons ===== */
input,
button {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    font-size: 15px;
    box-sizing: border-box;
}

button {
    background: #F4B400;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Logout (account) button */
.logout {
    background: #d9534f;
    color: #ffffff;
}

/* ===== Headings ===== */
.dashboard h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* ===== Mobile Optimization ===== */
@media (max-width: 480px) {

    body {
        align-items: flex-start;
        padding-top: 40px;
    }

    .login-box,
    .dashboard {
        padding: 20px;
        border-radius: 8px;
    }

    .dashboard h2 {
        font-size: 18px;
    }

    button {
        font-size: 16px;
        padding: 14px;
    }
}
