* {
  font-family: "Work Sans", sans-serif;
}

*:focus {
  outline: none;
}

body {
  background-color: #001b53!important;
}

#login-container #login {
  max-width: 400px;
  width: 100%;
}

#login-container input {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
}

#login-container input[type="text"],
#login-container input[type="email"],
#login-container input[type="password"] {
  background: transparent;
  border: none;
  border-bottom: 2px solid #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  color: #ffffff !important;
}

#login-container input[type="text"]::placeholder,
#login-container input[type="password"]::placeholder {
  color: #ffffff;
  opacity: 1;
}

#login-container input[type="text"]:-ms-input-placeholder,
#login-container input[type="password"]:-ms-input-placeholder {
  color: #ffffff;
}

#login-container input[type="text"]::-ms-input-placeholder,
#login-container input[type="password"]::-ms-input-placeholder {
  color: #ffffff;
}

/* The container */
#login-container .form-check-container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #ff8b22 !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
#login-container .form-check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
#login-container .form-check-container .custom-checkbox {
  position: absolute;
  top: 3px;
  left: 5px;
  height: 16px;
  width: 16px;
  background: transparent;
  border: 1px solid #ff8b22;
  border-radius: 2px;
}

/* Create the checkmark/indicator (hidden when not checked) */
#login-container .form-check-container .custom-checkbox:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
#login-container .form-check-container input:checked ~ .custom-checkbox:after {
  display: block;
}

/* Style the checkmark/indicator */
#login-container .form-check-container .custom-checkbox:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#login-container #login-submit {
  min-width: 150px;
  height: 56px;
  background-image: radial-gradient(circle at 50% 64%, #ff8b22, #ee4842);
  background-image: radial-gradient(circle at 50% 64%, #ff8b22, #ee4842);
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0;
  margin-left: 20px;
}
