*
{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
.container
{
width: 100%;
height: 100vh;
background:#001660;
display: flex;
justify-content: center;
align-items: center;

}

form{
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    width:90%;
    max-width: 500px;
    border-radius: 10px;
}
form h3{
    font-size: 45px;
    margin-bottom: 10px;
}
form input, form select{
    height: 40px;
    border-radius: 5px;
    
    padding: 10px;
    margin: 10px 0;
    outline: none;
    background-color: #e7ede7;
    font-size: 16px;
}
form button{
    padding: 15px;
    background-color: green;
    color: white;
    font-size: 16px;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

