:root{
  --main-bg-color: #3D5A80;
  --secondary-bg-color: #98C1D9;
  --other-1: rgb(56, 56, 56);
  --other-2: #293241;
  --other-3: #EE6C4D;
  --other-black:#293241;
}
@font-face {
  src: url('http://sms.clinicamoderna.pt/public/fonts/outfit/static/Outfit-Regular.ttf');
  font-family: 'Outfit';
}
*{
  box-sizing: border-box;
  margin: 0px auto;
  max-width: 100%;
  font-family: 'Outfit', sans-serif;
  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: rgb(86, 86, 84);
}
.Login{
  width: 30vw;
  display:block;
  position: absolute;
  height: 100vh;
  background: rgb(86, 86, 84);
}
.Login input{
  display: block;
  width: 80%;
  font-size: 1.1em;
  padding: 10px;
  padding-left: 50px;
  text-align:left;
  border-radius: 0px;
  border:0;
  outline: none;
  background: #333;
  color: #f0f0f0;
}
.Login input[type="submit"]{
  text-align:center;
  padding-left: 10px;
  margin-top: calc(30px + 1em);
  background: var(--other-1);
}
label{
  text-align: left;
  color: var(--other-black);
  display: block;
  width: 80%;
  margin-top: 0px;
  padding: 12px;
  padding-left: 20px;
  transform: translateY(100%);
  z-index: -1;
  cursor:text;
  color: #f0f0f0;
}
.Login h1{
  color:#f0f0f0;
  background: rgb(56, 56, 56);
  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;
  }
}
