*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

#cont{
    width: 100vw;
    min-height: 100vh;
    /* background-color: aqua; */
    background-image: url(/Web0-session1/images/salt.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
}

form{
    width: 500px;
    backdrop-filter: blur(5px);
}

fieldset{
    padding: 20px;
}

form label, form input, form select{
    display: block;
}

.sport label, .sport input{
    display:inline-block;
}

.sport input{
    width: 20px;
    
}
.sport label{
    margin-right: 40px;
}

form input, form select{
    width: 100%;
    font-size: 25px;
    background-color: transparent;
    color: white;
    outline: none;
    padding: 5px;
    margin-bottom: 8px;
}

form button{
    width: 100%;
    margin-top: 15px;
    font-size: 30px;
    padding:3px;
    border: none;
    border-radius: 10px;
    background-color: rgb(225, 117, 2);
    color: white;
    font-weight: bold;
    cursor: pointer;
}

form button:hover{
    background-color: rgb(249, 143, 30);
}

select option{
    color: black;
}