body{
    background-color: rgb(52, 50, 50);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.container{
    margin: auto;
    border: 1px solid black;
    background-color: rgb(246, 255, 78);
    width: 50%;
    text-align: center;
    font-size: 25px;
    box-sizing: border-box;
    border-radius: 20px;
}
.input_fields{
    gap: 15px;
    display: flex;
    justify-content: space-around;
    width: 100%; 
}
.input{
    font-size: 20px;
    padding: 20px 10px;
    border-radius: 10px;
    border: 1px solid black;
    width: 100%;
    margin: 10px;
}
.input:focus{
    outline: none;
}
.btn{
    font-size: 30px;
    border: 1px solid black;
    box-sizing: border-box;
    margin: 10px 0;
    border-radius: 20px;
    padding: 10px 20px;
    background-color: rgb(15, 7, 125);
    color: white;
    font-weight: bolder;
    width: 100%;
    margin-bottom: 20px;
}
.btn:hover{
    outline: none;
    cursor: pointer;
}
#title{
    font-size: 70px;
}