/* login.css */
body.login-page {
    background: #1e2430;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background: #2b3448;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    width: 300px;
}

.login-box input[type=text],
.login-box input[type=password],
.login-box input[type=submit] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

.login-box input[type=submit] {
    background: #f6d100;
    color: black;
    cursor: pointer;
}

.login-box .error {
    color: #ff5555;
    text-align: center;
    margin-top: 10px;
}
