body {
    background-color: #2c3e50; 
    font-family: "Comfortaa", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px; 
}

h2 {
    color: #5C6BC0; 
    margin-bottom: 20px;
    font-size: 24px;
    text-transform: uppercase;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

input[type="text"], input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

button {
    background-color: #5C6BC0;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: #3949AB;
}

.logo-container {
    margin-bottom: 20px; 
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px; 
    background-color: #333; /
    color: white;
    text-align: center;
    line-height: 50px; 
    font-size: 0.8em;
}


.flash-message {
    background-color: #e74c3c; /* Softer red */
    color: white;
    padding: 10px;
    margin-top: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}