/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #0a72e7 0%, #1c1c1c 100%);
    background-attachment: fixed; /* Ensures smooth gradient */
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh; /* Ensures full-page coverage */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- LOGIN PAGE STYLING --- */
.login-container {
    background: #ffffff;
    color: #333;
    width: 350px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Logo Above Login */
.logo {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
}

/* Login Form */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

label {
    text-align: center;
    width: 100%;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

input {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Login Button */
button {
    width: 100%;
    background: #0a72e7;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background: #084ba5;
}

/* Error Message */
.error-msg {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
}

