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

.container{
    background-color: white;
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
    text-align: center;
    width: 350px;
}

input{
    width: 90%;
    padding: 8px;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button{
    background-color: #007BFF;
    padding: 8px;
    margin: 8px 0;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 10px #ccc;
    color: white;
}

button:hover{
    background-color: #0056b3;
}