  login {
    background: #d9d7d5;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  div {
    background: #fff;
    flex-basis: 100%;
    margin-bottom: 0.5rem;
  }

  @media (min-width: 500px) {
    login {
      flex-wrap: nowrap;
    }

    div {
      flex-basis: 33%;
    }
  }

.login {
    width: 330px;
    background-color: #ffffff;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    margin: 10px auto;
}
.login h1 {
    text-align: center;
    color: #5b6574;
    font-size: 24px;
    padding: 15px 0 0 0;
}
.login main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.login main label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: darkblue;
    color: #ffffff;
}
.login main input[type="text"] {
    width: 200px;
    height: 50px;
    border: 1px solid #dee0e4;
    margin-bottom: 20px;
}
.login main input[type="submit"] {
    width: 80%;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: darkblue;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
}
.login main input[type="submit"]:hover {
  background-color: darkblue;
    transition: background-color 0.2s;
}
html {
	height: 100%;
	/*Image only BG fallback*/
	
	/*background = gradient + image pattern combo*/
	background: 
		linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6));
	background-attachment: fixed;
}

.form {
  width: 340px;
  height: 800px;
  background: #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 0 40px -10px #000;
  padding: 20px 30px;
  max-width: calc(100vw - 40px);
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.video {
  border: none;
  color: #0c4c96;
  display: flex;
  margin: auto;
}
.button {
  background-color: #d6e6ff;
  border: none;
  color: #0c4c96;
  padding: 7px 16px 10px;
  text-align: center;
  text-decoration: none;
  display: flex;
  font-size: 24px;
  margin: auto;
  cursor: pointer;
  transition: all 0.3s;
}
