body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121a2a; /* Dark blue background */
    color: #e0e0e0; /* Light text color */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #1e293b; /* Slightly lighter dark blue for the card */
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 380px;
    text-align: center;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #4a90e2; /* Accent blue */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*
.logo-icon {
    display: inline-block;
    background-color: #4a90e2;
    color: #1e293b;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
    font-weight: bold;
}
*/
.logo-image {
    height: 100px; 
    width: auto;
    margin-right: 10px;
}

h2 {
    color: #ffffff; /* White heading */
    margin-bottom: 25px;
    font-weight: 300;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #a0aec0; /* Lighter gray for labels */
    font-size: 0.9em;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #3e4c5e; /* Darker border */
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #2d3748; /* Dark input background */
    color: #e0e0e0; /* Light text in input */
}

.input-group input:focus {
    outline: none;
    border-color: #4a90e2; /* Highlight with accent blue */
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.3);
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #4a90e2; /* Accent blue button */
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #357abd; /* Darker blue on hover */
}

.footer-links {
    margin-top: 20px;
    font-size: 0.85em;
}

.footer-links a {
    color: #63b3ed; /* Lighter blue for links */
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.disclaimer {
    margin-top: 25px;
    font-size: 0.75em;
    color: #718096; /* Gray disclaimer text */
}

.error-message {
    color: #e53e3e; /* Red for error messages */
    background-color: rgba(229, 62, 62, 0.1);
    border: 1px solid rgba(229, 62, 62, 0.3);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 0.9em;
}