:root{
  --main-bg-color: #3D5A80;
  --secondary-bg-color: #98C1D9;
  --other-1: #284B63;
  --other-2: #293241;
  --other-3: #EE6C4D;
  --other-black:#293241;
}
@font-face {
  src: url('http://sms.asrsantos.com/public/fonts/roboto/regular.ttf');
  font-family: "Roboto";
}
*{
  box-sizing: border-box;
  margin: 0px auto;
  max-width: 100%;
  font-family: "Roboto";
  text-align: center;
}
.Login{
  background: var(--other-black);
}
footer{
  position: absolute;
  bottom: 0;
  text-align: center;
  padding: 20px;
  background: var(--other-black);
  color: #f0f0f0;
  width: 100%;
}
.content{
  display: block;
  width: calc(100%);
  min-height: 100vh;
  position: relative;
  background: #f0f0f0;
}
.Login {
    width: 30vw;
    display: block;
    position: absolute;
    height: 100vh;
    background: #2d72bb;
}
.Login input {
    display: block;
    width: 80%;
    font-size: 1.1em;
    padding: 10px;
        padding-left: 10px;
    padding-left: 50px;
    text-align: left;
    border-radius: 0px;
    border: 0;
    outline: none;
    background: #fff;
    color: #484848;
}
.Login input[type="submit"] {
    text-align: center;
    padding-left: 10px;
    margin-top: calc(30px + 1em);
    background: #53a91d;
}
label {
    text-align: left;
    color: var(--other-black);
    display: block;
    width: 80%;
    margin-top: 0px;
    padding: 12px;
        padding-left: 12px;
    padding-left: 20px;
    transform: translateY(100%);
    z-index: -1;
    cursor: text;
    color: #6f6b6b;
}
.Login h1 {
    color: #f0f0f0;
    background: #53a91d;
    line-height: 4em;
    border-bottom: 1px solid #6665;
}
.Login form{
  padding-top: 10vh;
}
.side-img{
  width: 70vw;
  height: 100vh;
  margin-left: 30vw;
  margin-right: 0;
  object-fit: cover;
}
.side-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:1100px) {
  .side-img{
    width: 50vw;
    margin-left: 50vw;
  }
  .Login{
    width: 50vw;
  }
}
@media (max-width: 800px) {
  .Login{
    z-index: 2;
    height: 90vh;
    top:5vh;
    width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
  .side-img{
    width: 100vw;
    margin-left: 0vw;
    position: absolute;
    z-index: 1;
  }
}
@media (max-width: 400px) {
  .Login{
    width: 90vw;
  }
}
