html {

    background-image: url(./assets/img/background.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

  }
.wrapper {
  padding-top: 50px;
}
body {
    padding: 0;
    margin: 0;
}

.container {
    width: 400px;
    height:450px;
    background-color: white;
    margin: 0 auto;
    border-radius: 5px;
    position: relative;  
    top: 10%; 
    color: gray;
}

.content {
  padding: 5%;
}

h3 {
  margin: 0, 0, 20px, 0;
}

#username, #password, #repeat-password {
  width: 100%;
  line-height: 35px;
  margin-bottom: 20px;
  border: 1px solid black;
  border-top: none;
  border-left: none;
  border-right: none;
  outline-color: #1E88E5;
}

#remember-me {
  height: 20px;
  width:20px;
}

label, #remember-me  {
  cursor: pointer;
}
#reset-password {
  color: black;
  text-decoration: none;
  padding-right: 20px;
  float: right;
  margin-top: 10px;
  font-size: 20px;
}
#reset-password:hover {
  text-decoration:underline;
}
.log-in {
  width: 100%;
  height: 50px;
  margin: 20px 0;
  background-color: #1E88E5;
  color: white;
  border: none;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
}
.log-in:hover {
  background-color: #1971bf;
}
#form-footer {
  font-size: 20px;
}
#sign-up {
  text-decoration: none;
}
#sign-up:hover {
  text-decoration: underline;
}
#sign-up:active {
  color: black;
}
#sign-up:visited {
  color: black;
}

.hidden {
  display: none;
}

.float-right {
  float: right;
}
.show {
  display: block;
}
