html,
body {
    height: 100%;
}
.login-content{
    display: flex;
    margin-top: 12%;
    margin-left: 31%;   
}  
.login-logo{.
    margin-top: 11%;
            padding-Top:20px;
}
.head1 {
    font-weight: bold;
    color: #337ab7;
    padding-left: 45%;
}
.head2 {
    font-weight: bold;
    background-color: #337ab7;
    color: white;
    padding: 1% 35%;
    margin-bottom: 2%;
    margin-left: -5%;
}
.login-form{
    padding: 0 8%;
}        

* {
    box-sizing: border-box;
  }
  
  input[type=text], select, textarea {
    width: 100%;
    padding: 3%;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
  }

  input[type=password] {
    width: 100%;
    padding: 3%;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
  }
  
  label {
    padding: 12px 12px 12px 0;
    display: inline-block;
  }
  
  input[type=submit] {
    background-color: white;
    color: blue;
    padding: 6px 20px;
    /* border: none; */
    border-radius: 4px;
    cursor: pointer;
    /* float: right; */
    margin-top: 4%;
  }
  
  input[type=submit]:hover {
    background-color: #e2e2e2;
  }
  
  .container {
    width: 50%;
    border-radius: 5px;
    border-left: 1px solid #cacad2;
    padding: 0 20px;
  }

.logincontainer {
    width: 50%;
    border-radius: 5px;
    padding: 0 20px;
}
  
  .col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
    font-size: small;
  }
  
  .col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
  }
.forgot {
    float: right;
    margin-top: -23px;
}

  .submit-div{
    text-align: center;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }


  
  /* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .col-25, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}