body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

input {
    width: 90%;
    padding: 10px;
    margin: 15px 0;
    border: none;
    border-radius: 5px;
}

button, .wake-btn {
    width: 95%;
    padding: 12px;
    background-color: #4caf50;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover, .wake-btn:hover {
    background-color: #45a049;
}

.error {
    color: #ff5252;
}

.success {
    color: #4caf50;
}

.logout {
    display: block;
    margin-top: 20px;
    color: #bbb;
    text-decoration: none;
}
