body {
    height: 100vh;
    /* margin: 0; */
    /* display: grid; */
    /* place-items: center; */
    background: #221F20;
  }
  
  .module-border-wrap {
    max-width: 40vw;
    /* height: 30vh; */
    padding: 1rem;
    position: relative;
    background: linear-gradient(to right, #00B1E4, #8FC965, #F36C22);
    padding: 3px;

    display: flex;
    align-items: center;
    position: absolute;
    /* z-index: -1; */
  }
  
  .module {
    width: 40vw;
    max-height: 35vh;
    background: #221F20;
    color: white;
    padding: 2rem;
    position: relative;
  }

.login-form{
    display: flex;
    flex-flow: column nowrap;
    gap: 25px;
}

input{
    border-radius: 10px;
    padding: 3px 8px;
    font-size: 19px;
}


.submit-button {
  width: 100px;
  background-color: #0095ff;
  border: 1px solid transparent;
  border-radius: 3px;
  box-shadow: rgba(255, 255, 255, .4) 0 1px 0 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15385;
  margin: 20px auto 15px;
  outline: none;
  padding: 8px .8em;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  white-space: nowrap;
}

.submit-button:hover,
.submit-button:focus {
  background-color: #07c;
}

.submit-button:focus {
  box-shadow: 0 0 0 4px rgba(0, 149, 255, .15);
}

.submit-button:active {
  background-color: #0064bd;
  box-shadow: none;
}

.container{
  /* width: 225px; */
  width: 100%;
  height: 68vh;
  background: #221F20;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.login, .password{
  text-align: center;
}

footer{
  width: 98.5vw;
}

/* Login Error Message */
.login-error{
  position: absolute;
  top: 0;
  left: 0; 
  right: 0; 
  margin-inline: auto; 
  width: fit-content;
  
  color: #ff231f;
  font-weight: bold;
}

@media (max-width: 1050px) {
  .module{
    width: 73vw;
  }
  .module-border-wrap{
    max-width: 95vw;
  }
}

@media (max-width: 800px) {
  .module{
    width: 73vw;
  }
  .module-border-wrap{
    max-width: 95vw;
  }
}

