.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-box {
    width: 400px;
    background: #1f1f1f;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
}

.login-box h1 {
    margin-bottom: 25px;
}

.login-box form {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.login-box label {
    margin-bottom: 5px;
}

.login-box input {
    margin-bottom: 15px;
    padding: 10px;
    background: #111;
    color: white;
    border: 1px solid #444;
    border-radius: 4px;
}

.login-box button {
    background: #007BFF;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.login-box button:hover {
    background: #005fcc;
}