*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    height: 800px;
    max-width: 900px;
    background-color: antiquewhite;
    padding: 100px;
}
.box{
    width: 100%;
    height: 100%;
    background-color:rgb(179, 172, 165);
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 5px;
}
form,input{
    font-size: x-large;
}
button{
    height: 50px;
    width: 100px;
    font-size: large;
    color: rgb(12, 16, 218);
}
.boxes{
    padding: 20px;
    display: flex;
    gap: 20px;
}
p{
    font-size: x-large;
}
h1{
    color: rgb(216, 25, 41);
    text-align: center;
}