body {
  background-color: #0d0d0d;
  font-family: 'Open Sans', sans-serif;
}

form {
  background-color: #1C1C1C;
  border-radius: 5px;
  margin: auto;
  padding: 50px 40px;
  width: 20%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

img {
  display: block;
  margin: 0 auto 20px;
  height: 59px;
  width: 55px;
}

h1 {
  color: #ffffff
  ;
  font-size: medium;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bolder;
}

label {
  color: #FFFFFF;
  display: block;
  margin-left: 10px;
  text-align: left;
  font-size: 14px;
}

input[type="text"],
input[type="password"],
input[type="submit"] {
  background-color: #1C1C1C;
  border: 1px solid #454545;
  border-radius: 5.25px;
  color: #FFFFFF;
  display: block;
  margin-bottom: 10px;
  padding: 20px;
  width: 88%;
  font-size: 1.05em;
}

.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.remember {
  display: flex;
  align-items: center;
  height: 24px;
}

input[type="checkbox"] {
  appearance: none;
  border: 1px solid #FFFFFF;
  border-radius: 3px;
  margin-right: 5px;
  height: 20px;
  width: 20px;
  vertical-align: middle;
}

input[type="checkbox"]:checked::after {
  content: "\2714";
  display: block;
  color: #808080;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  height: 100%;
  width: 100%;
  background-color: #0078D7;
  border-radius: 3px;
}

.forgot-password {
  color: #FFFFFF;
  font-size: 12px;
  text-decoration: underline;
  text-align: right;
  margin-left: auto;
}

input[type="submit"] {
  background-color: #0078D7;
  border: none;
  border-radius: 6.25px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: bold;
  padding: 21px;
  width: 100%;
}

input[type="submit"]:hover {
  background-color: #005EAD;
}

.signup {
  margin-top: 20px;
  color: #FFFFFF;
  font-size: 14px;
  text-align: center;
}

.signup-link,
.privacy-policy,
.back-to-all-sign-in-options {
  color: #acacac;
  text-decoration: underline;
}

.privacy-policy a {
  color: #b20000;
  text-decoration: underline;
}

.signup-link:hover,
.privacy-policy:hover,
.back 
{}