body {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    margin: 0; 
    background-color: #416390;
}

.login {
    height: 320px;
    width: 300px;
    padding: 20px;
    border: 1px solid white;
    background: white; 
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
    border-radius: 20px;
}

.login button {
    margin-top: 20px;
    padding: 7px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 25px;
    border: none;
}
.login button:hover {
    background-color: #416390;  
    color: white;
    transition: background 0.5s ease, color 0.5s ease;
}
.login a {
    margin-top: 30px;
    text-decoration: none;
    font-size: 13px;
    color: black;   
}
.login a:hover {
    text-decoration: underline;

}
input {
    margin-top: 10px;
    padding: 10px;
    border-radius: 25px;
    border: none;
    width: 250px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
   outline: none;
}
input:hover{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.5s ease;
}
label {
    display: flex;
    text-align: left;
    margin-top: 20px;
    margin-left: 20px;
}