/* login.css */

body {
    background-color: #1e1e2f;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: #2b2b3d;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    width: 300px;
    text-align: center;
}

h1 {
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 1.8em;
}

label {
    display: block;
    margin: 10px 0 5px;
    color: #cfcfcf;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    background-color: #1a1a28;
    color: #f0f0f0;
    border: 1px solid #444;
    border-radius: 5px;
    margin-bottom: 15px;
}

input:focus {
    outline: none;
    border-color: #6c63ff;
    box-shadow: 0 0 5px #6c63ff;
}

button {
    background-color: #6c63ff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5751d1;
}

.message {
    background-color: #ff4f4f;
    padding: 10px;
    border-radius: 5px;
    color: white;
    margin-bottom: 20px;
}

a.btn-register {
    display: inline-block;
    margin-top: 15px;
    color: #6c63ff;
    text-decoration: none;
}

a.btn-register:hover {
    text-decoration: underline;
}
