:root {
  --sas-login-form: #1e2530;
  --sas-header: #212733;
  --sas-background: #0d0f14;
  --sas-form-button: #2476e0;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--sas-background);
}

.form-signin button {
  width: 40px;
  height: 30px;
  color: white;
  background-color: var(--sas-form-button);
  border: 0;
}

.form-signin {
  width: 100%;
  max-width: 650px;
  padding: 10px;
  margin: auto;
  background-color: var(--sas-login-form);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
}

.form-row .col {
  flex: 1;
  padding-right: 5px;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="text"],
.form-signin input[type="email"],
.form-signin input[type="password"] {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 0;
  height: 30px;
  padding: 6px 10px;
}

/* LOGIN STYLES */
.form-check-label {
  margin-bottom: 0;
}

.different_login {
  text-align: center;
  position: relative;
  margin: 20px 0;
}

.different_login span {
  background-color: var(--sas-login-form);
  padding: 0 15px;
  position: relative;
  text-transform: uppercase;
}

.different_login::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  border-top: 0.5px solid white;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.small-font,
.form-check-label,
.form-note,
.text-muted {
  font-size: 0.8rem;
}

.small-font,
.form-note a {
  color: inherit;
  text-decoration: none;
}

.small-font:hover,
.form-note a:hover {
  text-decoration: underline;
  color: #2476e0;
}
