/* Adapted from https://www.w3schools.com/howto/howto_css_split_screen.asp */
.split {
    height: 100vh;
    width: 50%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
    overflow: hidden;
    padding-top: 20px;
  }
  
  .left {
    background-image: url("../Images/login.jpg");
    height: 100%; 
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
  }
  
  .right {
    right: 0;
    background-color: #b0c4de;
  }
  
  .centered {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    height: 100vh;
    width: 60%;
  }
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: antiquewhite;
    font-size: large;
  }
  .centered.signup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    height: 100vh;
    width: 80%;
    overflow: auto;

  }
  h4{
    color: white;
  }
  h1 {color: rgb(1, 1, 61)}
/* Mobile Styles */
@media only screen and (max-width: 960px){
  .split {
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
    overflow: hidden;
    padding-top: 20px;
  }
  .container {
    margin: auto;
    width: 95% !important;
}
.main-container {
  min-height: 100vh;
  display: block;
  position: relative;
  padding-bottom: 200px;
}
.split{
  background-image: url("../Images/login.jpg");
  height: 100%; 

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
}

}
