@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

form{
    background-color: #72f3ff;
    border-radius: 10px;
    font-family: "Roboto Condensed", sans-serif;
    width: 50%;
    height: auto;
    margin: auto;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

fieldset{
    border:none;
}

legend{
    font-size: 30px;
    color: rgb(59, 59, 59);
    margin-top: 15px;
}
label{
    display:flex;
    flex-direction: column;
    width: 300px;
    /*background-color: #9effa6;*/
}
input:not([type="submit"]) {
    height: 20px;
    padding-left: 10px;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: #004a99;
}

.boton{
    color:white;
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    width: 150px;
    height: 40px;
    cursor: pointer;
    border-radius: 20px;
    border-style: solid;
    border-width: 2px;
    border-color: #000066;
    background-color: #3c3cd2;
    display: flex;
    margin: auto;
    justify-content: space-around;
    transition: all 300ms;
}
.boton:hover{
    border-color: #003699;
    background-color: #9eecff;
    color:rgb(5, 0, 53);
}

@media only screen and (max-width : 600px) {
    form{
        width: 99%;
    }
    label{
        width: 90%;
    }
}