body{
    background-image: url('./imagenesPerfiles/alumno/fondo_login.webp');
    width: 100%;
    height: 100vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}


.formulario{
    background-color: #Fff;
    color: #424242;
    padding: 20px;
    border-radius: 10px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contendorInput{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.contendorInput label{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 25px;
}


.contendorInput input, select{
    border-radius: 7px;
    border: none;
    border: 1px solid #9D9D9D;
    padding:  10px 15px;
    width: 300px;
}


.botonEntrar{
    background-color: #F46C24;
    border: 1px solid #ff965e !important;
    color: #fff;
    width: 200px !important;
    margin:  0  auto;
    font-size: 27px;
    font-weight: bold;
    transition: 0.1s ease all;
}

.botonEntrar:hover{
    scale: 1.05;
}