body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background:#141414;
    color:white;
}

.container{
    width:100%;
    max-width:400px;
    margin:80px auto;
    background:#1f1f1f;
    padding:40px;
    border-radius:8px;
    box-shadow:0 0 20px rgba(0,0,0,0.8);
}

h1{
    text-align:center;
    color:#e50914;
}

input{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:none;
    border-radius:4px;
    background:#333;
    color:white;
}

button{
    width:100%;
    padding:12px;
    margin-top:10px;
    border:none;
    border-radius:4px;
    background:#e50914;
    color:white;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#b20710;
}

a{
    color:#e50914;
    text-decoration:none;
}

.dashboard{
    max-width:900px;
    margin:40px auto;
    padding:20px;
}

.card{
    background:#1f1f1f;
    padding:20px;
    border-radius:8px;
    margin-bottom:20px;
}