*{
    font-family: Helvetica, sans-serif;
}

.content{
    max-width: fit-content;
    margin-top: 150px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    border: solid;
    border-color: rgb(207, 218, 227);
    border-width: 2px;
    border-radius: 30px;

    background-color: rgb(207, 218, 227);
    color:rgb(17, 72, 113);
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    gap:20px;
}

form > div {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap:15px;
}

form > div > input{
    height: 1.5em;
    border-radius: 15px;
    border: none;
}



form > div > label{
    display:inline-block;
    width:200px;
    text-align: center;
}


button{
    background-color: rgb(17,72,113);
    color:rgb(207,218,227);
    border: solid;
    border-radius: 10px;
    border-color: rgb(17, 72, 113);
    border-width: 1px;
    width: 8em;
    height: 2em;
    font-size: larger;
}

