body{
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: sans-serif;
}
.head h1{
    padding-top: 10px;
    font-size: 45px;
}
.myContainer{
    background:rgba(0,0,0,0.1);
    border-radius: 25px;
    width: 300px;
    margin: auto;
    box-shadow: 0 0 15px #015;
    height: 90%;
    top: 5%; 
    position: relative;
}
.loginRow{
    height: 68.5%; 
    width: 100%;
    position: absolute;
    top:20%;
    background-image: url("img/bg1.jpg");
    background-size: contain;
}

.header{
    text-align: center;
    padding-top: 10px;
}
.header h1{
    color: #015;
    font-size: 35px;
}
.main{
    text-align: center;
}
.main input, button{
    width: 250px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 40px;
    box-sizing: border-box;
    font-size: 15px;
    color:#015;
    margin-top: 15px;
}
.main button:hover{
    box-shadow: 2px 2px 5px #555;
    background: white ;
    color: #015;
}
.main input:hover{
    box-shadow: 2px 2px 5px #555;
    background: #ddd;
}
.main span{
    position:relative;
}
.main i{
    position: absolute;
    left: 15px;
    color:#015;
    font-size: 15px;
    top: 2px;
}
.main button{
    padding-left: 0;
    background: #015;
    color: white ;
    letter-spacing: 1px;
    font-weight: bold;
}
.foot{
    text-align: center;
    color: white;
    height: 10%;
    width:100%;
    box-shadow: inset 2px -2px 2px 2px #7f7f7f;
    bottom:0;
    padding-top:10px;
    background: #041154;
    position: absolute;
}
