body {
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
                url('/assets/login_body.png') center center fixed;
    background-size: cover;
    color: #FFFFFF; /* white text */
    padding: 50px;
    margin: 0;
}

.form-container {
    max-width: 280px;
    margin: auto;
    background-color: #0D1B2A; /* deep blue background */
    padding: 30px;
    border-radius: 12px;
    font-size: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.6); /* subtle shadow */
}

.logo {
    text-align: center;
    margin-bottom: 15px;
}

.logo img {
    max-height: 250px;
}

h2 {
    text-align: center;
    color: #E63946; /* red heading */
    font-size: 25px;
    margin-bottom: 15px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    background-color: #1a1a1a; /* dark input */
    color: #FFFFFF;
    border: 1px solid #2A9D8F; /* green border highlight */
    border-radius: 4px;
    margin-bottom: 14px;
    font-size: 13px;
}

label {
    display: block;
    margin-bottom: 4px;
    color: #FFFFFF;
}

button {
    background-color: #E63946; /* red button */
    color: #FFFFFF;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2A9D8F; /* green hover */
}

.footer-link {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
}

a {
    color: #E63946; /* red links */
    text-decoration: none;
}

a:hover {
    color: #2A9D8F; /* green hover on links */
}

.error-msg {
    color: #FF4C4C; /* bright red for errors */
    font-size: 12px;
    text-align: center;
    margin-bottom: 12px;
}

/* === Placeholder alignment === */
input[type="text"]::placeholder,
input[type="password"]::placeholder {
    white-space: nowrap;
}

input[type="text"],
input[type="password"] {
    white-space: nowrap;   
    overflow: hidden;      
    text-overflow: ellipsis;
    vertical-align: middle;
}

button {
    vertical-align: middle;
}
