@media screen and (min-width: 1025px) {
  .form-input {
    display: inline-block;
  }
  #password {
    margin-left: 20px;
  }
}

@media screen and (max-width: 1024px) {
  #password {
    margin-top: 30px;
  }
.input-form {
  width: 600px;
}

}

.forgot-form {
  height: 54px;
  display: inline-block;
  margin-left: 396px;
}

.forgot {
  font-size: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  vertical-align: top;
  color: #0e0e0e;
}

#remember {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  color: #0e0e0e;
  cursor: pointer;
  text-transform: uppercase;
  user-select: none;
}

input[type=checkbox] {
  display: none;
}

.checkbox-group {
  display: inline-block;
  margin-top: 20px;
}

.checkbox {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  margin: 0 20px 8px 0;
  padding: 0px 0px 0 32px;
  border-radius: 8px;
  background-color: transparent;
  vertical-align: middle;
}

.checkbox:hover {
  cursor: pointer;
  background-color: transparent;
}

.checkbox:hover:after {
  border-color: var(--blue-dark);
}

.checkbox:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 0px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  border-radius: 6px;
  content: '';
}

.checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 6px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid var(--blue-dark);
  border-bottom: 3px solid var(--blue-dark);
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

input[type=checkbox]:checked+.checkbox:before {
  opacity: 1;
}