/* =========================================================
   LOGIN PAGE STYLING
   (No Header / No Back Button)
========================================================= */

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f2f2f2;
    font-family: Arial, sans-serif;
}

/* =========================================================
   LOGIN CARD
========================================================= */

.login-container {
    background: white;
    padding: 40px;
    width: 300px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

h2 {
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* =========================================================
   INPUT FIELDS
========================================================= */

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    background: #eee;
    border-radius: 4px;
    font-size: 14px;
}

input:focus {
    outline: none;
    background: #e0e0e0;
}

/* =========================================================
   LOGIN BUTTON
========================================================= */

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(to right, #6a5acd, #7b68ee);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    opacity: 0.9;
}

/* =========================================================
   ERROR MESSAGE
========================================================= */

#error {
    color: red;
    margin-top: 15px;
}