*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Times New Roman', Times, serif;
    background-color: rgb(169, 221, 230);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}

.formulario{
    background: linear-gradient(50deg,rgba(40,42,55,0.8) 50%,rgba(40,42,55,0.5)),url("./imagenes/02.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px;
    width: 1000px;
    border-radius: 25px;
}

.formulario h2{
    color: white;
    font-size: 30px;
    margin-bottom: 10px;
    margin-left: 20px;
}

.pnino{
    /*background-color: rgba(226, 243, 153,0.3);*/
    color: rgb(227, 243, 6);
    text-align: center;
    margin-bottom: 5px;
    padding: 5px;        
}

form{
    display: flex;
    flex-direction: column;
    width: 50%;
}

.inino{
    border: 1px solid rgb(122, 126, 121);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    width: 100%;    
    margin-bottom: 15px;
}

label{
    font-size: 17px;
    color: rgb(183, 221, 14);
    margin-left: 5px;
    margin-bottom: 5px;
}

input {
    padding: 5px 10px;
    background-color: slategray;
    border: 0;
    font-size: 15px;
    color: aliceblue;
    margin-bottom: 15px;   
    border-radius: 15px;
    cursor: pointer;
}

.ptutor{
    /*background-color: rgba(226, 243, 153,0.3);*/
    color: rgb(227, 243, 6);
    text-align: center;
    margin-bottom: 5px;
    padding: 5px;        
}

.itutor{
    border: 1px solid rgb(122, 126, 121);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    width: 100%;    
    margin-bottom: 15px;
}

:focus{
    outline: 1px solid rgb(112, 241, 6);
}

.btn{
    background-color: blue;
    width: 150px;
    align-self: center;
    cursor: pointer;
}

.btn:hover{
    background-color: dodgerblue;
}


@media(max-width:720px){

    body{
        padding: 38px;
    }

    .formulario{
        width: 100%;
    }

    form{
        width:100%;
    }
}