body{
    background-color: #141414;
}


.container {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh; 
}



.box {
    width: 400px; 
    height: 400px;
    border: 1px solid #ccc; 
    padding-top: 50px;
    border-radius: 5px;
   
} 



.first,
.second {
    padding: 10px;
    margin-top: 10px;
    color: white;
    padding: 20px;
}

.first input,
.second input {
    color: white;
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    margin-bottom: 10px;
    text-align: center;
    background-color: #141414;
    border: 1px solid #ada9a9;; 
}

.button{
    padding-top: 20px;
    padding-bottom: 20px;
}

.button input {
    width: 40%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    border: 1px #ccc;
    border-radius: 5px;


    color: white;
    box-shadow: inset 0 0 0 2px #a1a4a7;
    transition: background-color 0.3s ease; 
}

.button input:hover {
    color:rgb(255, 255, 255);
    background-color: #28292b;
}