  
body  
{  
    margin: 0;  
    padding: 0;  
    background-color: rgb(160,160,160);
    background-image: url('../images/login_background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Futura Now Text', sans-serif;
    min-width: 100vw;
    min-height: 100vh;
}  
.login{  
        position: absolute;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 382px;  
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content:center;
        overflow: hidden;  
        margin: auto;  
        background: transparent;
        border-radius: 15px ;  
}  
@media (min-width: 760px){
	.login{
        position: absolute;
        top: 50%;
        left: 12.5%;
        transform: translateY(-50%);
	}
}
.login form{
       width: 100%;
       align-items: center;
       justify-content: center;
       display: flex;
       flex-direction: column;
}
h2{  
    text-align: center;  
    color: black;
}  
label{  
    color: black;  
    text-transform: uppercase;
    font-size: 17px;  
}  
#Uname{  
    width: 300px;  
    height: 30px;  
    border: none;  
    border-radius: 3px;  
    padding-left: 8px;  
    font-size: 16px;
}  
#Pass{  
    width: 300px;  
    height: 30px;  
    border: none;  
    border-radius: 3px;  
    padding-left: 8px;  
    font-size: 16px;
      
}  
#log{  
    width: 300px;  
    height: 30px;  
    border: none;  
    padding-left: 7px;  
    height: 2rem;
    font-size:16px;
    background-color: black;
    color: white;
    cursor: pointer;
}  
span{  
    color: white;  
    font-size: 17px;  
}  

