body {
    background: #252525;
    font-family: 'Poppins', sans-serif;
}

.boxlogin{
    border-radius: 10px;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.16);
    background-color: #34343a;
    padding: 40px;
    width: 300px;
    height: 320px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -160px;
    margin-top: -150px;
}

.boxlogin input{
    margin-top: 30px;
}

.boxlogin button{
    background-color: #B0F90A;
    border: 0;
    color: #252525;
    font-weight: 600;
}

.boxlogin button:hover{
    background-color: #86bc07;
    color: #252525;
}


.preloader{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #252525;
    /* border: 1px solid #f00; */
 }

 .loader{
    width: 60px;
    height: 60px;
    left: 50%;
    top: 50%;
    margin-top: -30px;
    margin-left: -30px;
    position: absolute;
    text-align: center;
    animation: spin 6s linear infinite;
    transform-origin: center center;
    /* border: 1px solid #f00; */
 }

 .loader img{
    width: 60px;
    height: 60px;
    /* border: 1px solid #f00; */
 }

 @keyframes spin {
    0% { transform: scale(0) rotate(0deg); }
    35% { transform: scale(1) rotate(180deg); }
    75% { transform: scale(1) rotate(360deg); }
    100% { transform: scale(0) rotate(540deg); }
}