/* Fullscreen background styling */
body.login-page {
    background: url('../images/bg.png') no-repeat center top;
    background-size: 150px auto;
    background-attachment: fixed;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;

    /* 👇 Moves the background image down */
    background-position: center -100;
}



/* Centering login box */
.login-container {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Login box styling */
.login-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Login title/header */
.login-box h2 {
    background: linear-gradient(to right, #202959, #FDD00D);
    color: white;
    padding: 10px 0;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 20px;
}

/* Input fields */
.login-box input {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Login button */
.login-box button {
    width: 100%;
    padding: 10px;
    background: #202959;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-box button:hover {
    background: #FDD00D;
}

/* Footer links below the form */
.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #202959;
    font-size: 12px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Error message text */
.error {
    color: red;
    font-size: 12px;
    margin-bottom: 10px;
}

/* Page footer */
.copyright {
    font-size: 11px;
    color: white;
    text-align: center;
    margin-top: 15px;
    padding-bottom: 10px;
}
