body{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #efeff9;
    height: 80vh;
    padding: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.container{
    width: 100%;
    max-width: 350px;
    text-align: center;
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 9px;
    box-sizing: border-box;
    color: rgb(83, 77, 77);
    height: 300px;
}
h2{
    margin-top: 35px;
}
label{
    font-size: .9rem;
    text-align: center;
}
input{
    width: 75%;
    margin: 10px;
    height: 29px;
    border-radius: 5px;
    padding: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}
input:focus{
    border-color:rgb(64, 0, 255) ;
}
button{
    margin-top: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.2s;
}
button:hover{
    background-color: #0f5fb6;
    cursor: pointer;
    transform: translateY(-2px);
}
button:active{
    transform: translateY(0);
}
p{
    margin: 25px;
    color: green;
}