/*base*/
body {
    background: #E5E5E5;
    font-size: 1em;
}

header {
    background-color: #14213D;
    box-shadow: 1px 2px 15px 3px black;
}
h1{
    font-size: 5em;
}
#case-formulario{
    background-color: white;
}
form{
    margin: 0 auto;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}
label{
    font-size: 1.8em;
    text-align: center;
}
input{
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.37);
    border-radius: 25px;
    width: 60%;
    padding: 1%;
}
input::placeholder{
    text-align: center;
    font-size: 1.5em;
}
#btncalcular{
    border: 1px solid #14213D;
    border-radius: 25px;
    margin: 0 auto;
    width: 10%;
    background-color: #14213D;
    color: white;
    font-size: 1.2em;
}
#btncalcular:hover{
    width: 15%;
}
.box-resultado{
    width: 100%;
}
#p-resultado{
    font-size: 2em;
}
#resultado{
    margin: 0 auto;
    width: 80%;
    border: 1px solid #FCA311;
    border-radius: 25px;
    cursor: none;
    padding: 3%;
    font-size: 1.5em;
    text-align: center;
}


/**/
footer{
    background-color: #14213D;
}
ul{
    list-style: none;
    font-size:0.8em;
}
a{
    color: #fff;
}


/*responsividade*/
/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    h1{
        text-align: center;
        font-size: 2em;
    }
    #calcular{
        width: 50%;
    }
    #calcular:hover{
        width: 70%;
    }
    #txtimportante{
        font-size: 0.8em;
    }
    input::placeholder{
        text-align: center;
        font-size: 0.7em;
    }

    #btncalcular{
        width: 50%;
    
    }
    #btncalcular:hover{
        width: 60%;
    }



    #resultado{
        height: 120px;
        font-size: 1em;
    }
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {}