
*{
   /*
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    outline: none !important;
    */
    font-family: sans-serif;

}



.login-page .box{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    min-width: 250px;
   
}

.login-page{
    position: fixed;
    height: 75%;
    width: 100%;
    background-color: white;
}

.login-page .box .form-head{
    height: 150px;
    background-color: transparent;
}
.login-page .form-head img{
    display: flex;
    text-align: center;
    margin: 20px;
    margin-bottom:50px;
    height: 80px;
    width: auto;

}

.login-page .box .form-body{
   display: flex;
}

.login-page .box .form-body i{
    color:green;
}

.login-page .box .form-body input{
    height: 20px;
    margin-bottom:20px;
    margin-left: 20px;
    width: 80%;
    text-align: left;
    border:none;
    color: #2c2c2c;
    border-bottom: 1px ridge green;
    
    
}

.login-page .box .form-footer{
    text-align: center;
}

.login-page .box .form-footer button{
    height: 30px;
    width: 200px;
    border-radius: 20px;
    padding: 0px 50px;
    color: whitesmoke;
    background-color:rgb(2, 88, 2);
    border:none;
}
.login-page .box .form-footer button:hover{
    background-color: rgb(1, 70, 1);
    color: whitesmoke;
}