* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background: #202124;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-card {
    width: 420px;
    background: #2d2f33;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.login-card h1 {
    margin: 0 0 30px;
    text-align: center;
    font-size: 34px;
}

.login-card .subtitle {
    text-align: center;
    color: #a5a5a5;
    margin-top: -20px;
    margin-bottom: 30px;
}

.login-card label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.login-card input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #555;
    border-radius: 6px;
    background: #3a3d42;
    color: white;
    font-size: 15px;
}

.login-card input:focus {
    outline: none;
    border-color: #1976d2;
}

.login-card button {
    width: 100%;
    padding: 12px;
    background: #1976d2;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: .2s;
}

.login-card button:hover {
    background: #1565c0;
}

#status {
    margin-top: 18px;
    text-align: center;
    color: #ff6666;
}
