
/* Mobile First */
    * {
    text-decoration: none;
  }

body{
    margin: 15px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    padding: 20px;
}

.logo{
    margin: auto;
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

h1{
    text-align: center;
}

.btn{
    width: 50%;
    margin: auto;
    display: block;
}

.footer{
    text-align: center;
    margin-top: 40px;
}


.input{
    width: 100%;
    margin: 15px 0;
    clear: both;
    display: block;
    border: none;
    border-bottom: 1px solid;
    background-color: #efefef;
    padding: 4px 11px;
}

#model_name{
    border: none;
    border-bottom: 1px solid;
    background-color: #efefef;
    padding: 4px 11px;
}

h1{
    font-weight: 600;
    font-size: 30px;
}

#signature{
    width: 100%;
    height: auto;
    background-color: #efefef;
    border: none;
    margin-top: 50px;
}

#data_signature{
    width: 80%;
}



/* BREAK POINTS *******************************************************************************************************************************/

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

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

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
}

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

@media print {

        @page :left {
        margin: 0.5cm;
        }

        @page :right {
        margin: 0.8cm;
        }

        #print_bt{
            display: none;
        }

        #data_signature{
            width: 50%;
        }
        

 }
 