  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;
}
