/* Constants */
/* Calculated values */
body#sa_splash {
  background-size: cover;
  background-position: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #1c1f22;
  font-weight: bold;
  padding: 0;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
body#sa_splash a {
  text-decoration: none;
}
body#sa_splash #login-box {
  width: 580px;
  min-height: 364px;
  box-sizing: border-box;
  background: white;
  padding: 40px;
  border-radius: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-items: center;
  margin: 10px;
}
body#sa_splash .header {
  display: flex;
  flex-direction: column;
  flex-basis: fit-content;
  align-items: center;
  flex-grow: 0;
  flex-shrink: 0;
}
body#sa_splash .header .logo {
  flex-grow: 0;
  flex-shrink: 0;
  width: 69px;
  /* image dimension */
  height: 44px;
  /* image dimension */
}
body#sa_splash .btn {
  background: transparent;
  border: 1px solid #367fc0;
  color: #458ccb;
  border-radius: 6px;
  flex-grow: 9999;
  line-height: 100%;
  margin: 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-basis: content;
  padding: 10px;
}
body#sa_splash .btn.btn-primary {
  background: #458ccb;
  color: white;
}
body#sa_splash .btn:hover {
  background: #3172ac;
  border: 1px solid #367fc0;
  color: white;
}
body#sa_splash .explanation {
  font-weight: normal;
  padding: 10px 0;
}
body#sa_splash .buttons-box {
  display: flex;
  flex-direction: column;
  justify-items: stretch;
  height: 100%;
  flex-grow: 0;
}
body#sa_splash .buttons-box .btn {
  display: none;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 600px) {
  body#sa_splash .buttons-box .btn {
    display: flex;
    flex-direction: column;
  }
}
body#sa_splash .buttons-box .btn.btn-primary,
body#sa_splash .buttons-box .secondary-buttons .btn {
  display: flex;
}
body#sa_splash .buttons-box .secondary-buttons {
  display: flex;
  flex-grow: 9999;
  flex-direction: row;
}
@media (max-width: 600px) {
  body#sa_splash .buttons-box .secondary-buttons {
    display: none;
  }
}
body#sa_splash .buttons-box .secondary-buttons .btn {
  flex-basis: 0;
  margin-right: 10px;
}
body#sa_splash .buttons-box .secondary-buttons .btn:last-child {
  margin-right: 0;
}
body#sa_splash [class^="ff-"] {
  font-size: 36px;
  padding: 10px;
  display: inline-block;
}
body#sa_splash .wiggle-room {
  flex-grow: 1;
  flex-shrink: 1;
  min-height: 10px;
}
@media (max-height: 454px) {
  body#sa_splash #login-box {
    min-height: auto;
  }
  body#sa_splash #login-box .buttons-box {
    flex-direction: row;
  }
  body#sa_splash #login-box .buttons-box .btn {
    flex-grow: 9999;
    flex-shrink: 0;
    flex-basis: 0;
    margin-right: 10px;
    display: flex;
  }
  body#sa_splash #login-box .buttons-box .btn:last-child {
    margin-right: 0;
  }
  body#sa_splash #login-box .buttons-box .secondary-buttons {
    display: none;
  }
}
