body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding: 80px;
}

div{
    background-color: rgb(19, 26, 103);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(40, 42, 93);
    color: aliceblue;
    width: 250px;
    
}
input{
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
input:focus{
 outline:1.5px solid rgb(177, 183, 255);
}

button{
    padding: 10px;
    background-color: rgb(149, 158, 255);
    color: rgb(29, 29, 31);
    border-radius: 10px;
    border: none;
}
h1{
    color: rgb(19, 26, 103);
}