body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    margin: 0;
}

.login-container {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 320px;
    border: 1px solid #333;
}

h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 500;
}

.login-container {
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #ffffffdc;
    font-size: 14px;
}

input[type="email"],
input[type="password"] {
    width: 80%;
    max-width: 250px;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: #2d2d2d;
    color: #e0e0e0;
    font-size: 14px;
    transition: border-color 0.3s;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #ffffffdc;
    outline: none;
}

button {
    width: 50%;
    padding: 12px;
    background-color: #ffffffdc;
    color: #121212;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ffffff;
}

.error-message {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.warning-message {
    color: #FFC700;
    background-color: #39351D;
    border-radius: 2px;
    padding: 4px;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.logo {
    display: block;
    margin: 0 auto 25px;
    width: 120px; 
    height: auto;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.571)); 
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.remember-me input {
    margin-right: 10px;
}