*{  
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    
}


#head-container{
   float: left;
   width: 50%;
   height: 100vh;
  
}
.wrapper{
    height: 60vh;
    width: 80%;
    margin: 20vh auto;
    background-image: url('../images/sky_logo.png');
   background-repeat: no-repeat;
   background-size: contain;
    background-position: center;
}
#login-body{
    float: right;
    width: 50%;
    text-align: center;
    height: 100vh;
    box-shadow: 10px 10px 10px 10px #ccc;
}
form{
    height: 50vh;
    margin-top: 25vh;
}
.clearfix{
    clear: both;
}

h2{
    font-size: 24px;
    color: #2574A9;
    text-align: center;
    padding: 15px 0;
    word-wrap: break-word;
    font-weight: bold;    
}

h3{
    font-size:24px;
    color:  #2574A9;
    
}

.input{
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 25px;
    width: 50%;
    font-size: 16px;
}
label{
    float: left;
    margin-left: 25%;
    font-size: 18px;
}
.button{
    padding: 10px;
    background-color: #2574A9;
    color: white;
    border: none;
    width: 100px;
    border-radius: 5px;
    font-size: 15px;
}

@media screen and (max-width:700px){
    #head-container{
        width: 100%;
         height: 30vh;
    }
    .wrapper{
    height: 30vh;
    width: 80%;
    margin: 5vh auto;
    background-image: url('../images/sky logo.png');
   background-repeat: no-repeat;
   background-size: contain;
   background-position: center;
   
}
    #login-body{
        width: 100%;
        height: 60vh;
        box-shadow: none;
        margin-bottom: 50px;
    }
    form{
        margin-top: 15px;
    }
}