body {
    font-family: 'Poppins', sans-serif; 
}

#form-matricula {
    width: 100%;
    overflow-x: auto;
    padding-top: 40px;
}

form {
    width: 60%;
    text-align: center;
    margin: 0 auto;
    position: relative;
    height: auto;
}

.display {
    display: flex;
    flex-direction: row;
    width: auto;
    justify-content: space-between;
    margin: auto;
}

#submit {
    font-weight: 600;
    border: none;
    position: absolute;
    right: 0px;
    cursor: pointer;
    padding: 9px 20px ;
    background-color: #ECAF4D;
    border-radius: 5px;
    box-shadow: 5px 5px 10px #00190a67; 
    color: #013716d8;
    font-size: 15px;
    transition: 0.5s;      
}
#submit:hover{
    background-color: #004119;
    color: #FFF6E8;
}


/*  configurações do input  */

.form-item {
    position: relative;
    padding-bottom: 15px;
    width: 250px;
}

.input {
    width: 100%;
    height: 50px;
    display: block;
    box-sizing: border-box;
    padding: 20px 15px 13px ;
    color: black;
    font-size: 14px;
    font-weight: 500;
    background:white;
    border: 1px solid black;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 5px 5px 10px #00190a67; 
}

.input:focus {
    border: 1px solid #E38D00;
}

.input:valid {
    border: 1px solid green;
}

.input:invalid {
    border: 1px solid #f09c17;
}



.label {
    position: absolute;
    padding: 0;
    color: black;
    line-height: 40px;
    padding: 0 15px;
    top: -17px;
    font-size: 10px;
    cursor: text;
    transition: 0.2s;
    font-weight: 600;
    padding: 5px 0 0 15px;
}


.label {
    user-select: none;
    pointer-events: none;
  }

.label {
    display: flex;
  }

#imgarea-livro {
    width: 615px;
    height: 266px;
    margin:30px auto 60px;
}

#imgarea-livro img {
    width: 100%;
    height: 100%;
}


@media (max-width:750px) {

    #imgarea-livro {
       width: 75%;
       min-width: 380px;
       height: 200px;
    }

    form {
        width: 70%;
    }

    .form-item {
        width: 100%;
    }

    .display {
        display: flex;
        flex-direction: column;
    }

    .input {
        width: 100%;
    }

    #submit {
        right: 0;
    }
  }