body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
.cars {
/*margin: auto;*/
/*margin-top: 100px;*/
/*max-width: 400px;*/
/*background-color: #ffffff;*/
/*padding: 20px;*/
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
button[type=submit] {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
}
button[type=submit]:hover, button[type=submit]:active.btn, button[type=submit]:focus-visible {
background-color: #45a049;
    box-shadow: none;
}
input#rememberme{
    position: relative;
    top: 2px;
    margin-left: 6px;
}
body{
    position: relative;
}
.preloader{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100vw;
    height: 100vh;
}
.preloader:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/loader1.gif") center / 400px no-repeat;
    z-index: 1001;
}
.error-message{
    font-size: 16px;
    color: red;
    text-align: center;
    margin-top: -8px;
    font-weight: 600;
}
.device-message{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #f2f2f2;
    visibility: hidden;

}
.device-message h1{
    text-align: center;
    color: #1d7ead;
}
@media (max-width: 992px) {
    .device-message{
        visibility: visible;
    }
}
