.form {
  font-size: 16px;
  line-height: 24px;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-forgot-wrapper {
  margin-top: -12px;
  font-weight: bold;
}

.form-control {
  background: #ffffff;
  border: 1px solid #cfd4dc;
  box-sizing: border-box;
  border-radius: 4px;
  width: 100%;
  height: 48px;
  padding: 12px;
  font-size: 16px;
  line-height: 24px;
}
.form-control + label {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #6c737d;
  letter-spacing: 0.12px;
  transition: 0.3s;
}

.form-control:valid,
.form-control:focus {
  padding: 20px 11px 4px;
}

.form-control:-webkit-autofill {
  padding: 20px 11px 4px;
}

.form-control:valid + label,
.form-control:focus + label {
  top: 4px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08px;
}

.form-control:-webkit-autofill + label {
  top: 4px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08px;
}

.form-error .form-control {
  border: 2px solid #f44336;
}

.checkbox {
  font-size: 16px;
  line-height: 20px;
  padding: 6px 0;
  display: flex;
  align-items: center;
}
.checkbox input[type="checkbox"],
.checkbox input[type="checkbox"] + i {
  position: relative;
  display: inline-block;
  background: #ffffff;
  border: 1px solid #cfd4dc;
  box-sizing: border-box;
  border-radius: 2px;
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
}
.checkbox input[type="checkbox"] {
  display: none;
}
.checkbox input[type="checkbox"]:checked + i {
  background: #1565c0;
  border-color: #1565c0;
}
.checkbox:hover input[type="checkbox"]:checked + i {
  background: #1976d2;
  border-color: #1976d2;
}
.checkbox input[type="checkbox"]:checked + i:before {
  position: absolute;
  top: 0px;
  left: 1px;
  content: "";
  width: 8px;
  height: 4px;
  border: 2px solid;
  transform: rotate(-45deg);
  border-color: transparent transparent #fff #fff;
}

.btn {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.12px;
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-primary {
  border: 1px solid #1565c0;
  background: #1565c0;
  color: #fff;
}
.btn-primary:hover {
  background: #1976d2;
}
.btn-primary:active {
  background: #0d47a1;
}
.btn-block {
  display: block;
}
.btn-text {
  margin-left: 16px;
  border: none;
  color: #1565C0;
}
.btn-text:hover {
  background: #bbdefb;
}
.one-time-label {
  display: 'inline-block';
  margin-bottom: 10px;
}
.btn-reset {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-reset button {
  margin-left: 0;
}

#timer  {
  margin: 0;
}

.btn-reset button svg {
  margin-right: 4px;
  transform: translateY(1px);
}

