/* line 3, app/assets/stylesheets/login/login.scss */
html {
  background-color: #f9fafb;
}

/* line 7, app/assets/stylesheets/login/login.scss */
body * {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}

/* line 12, app/assets/stylesheets/login/login.scss */
#app-logo {
  /* Omniauth has a smaller login box, so we can
   * move the logo down a bit. */
}

/* line 13, app/assets/stylesheets/login/login.scss */
#app-logo > img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 620px;
  left: 0;
  width: 115px;
  margin: auto;
}

/* line 25, app/assets/stylesheets/login/login.scss */
#app-logo.omniauth > img {
  bottom: 500px;
}

/* line 30, app/assets/stylesheets/login/login.scss */
#login-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  width: 450px;
  height: 520px;
  margin: auto;
  padding: 3.75rem;
  border-radius: 0;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  background-color: white;
}

/* line 45, app/assets/stylesheets/login/login.scss */
#login-box.omniauth {
  height: 315px;
  text-align: center;
}

/* line 51, app/assets/stylesheets/login/login.scss */
.title {
  margin: 0 0 2.5rem;
  font-size: 1.5rem;
  font-weight: bold;
}

/* line 57, app/assets/stylesheets/login/login.scss */
.input-wrapper {
  position: relative;
}

/* line 61, app/assets/stylesheets/login/login.scss */
label {
  color: #9c9c9c;
  font-size: 0.75rem;
  font-weight: 400;
}

/* line 67, app/assets/stylesheets/login/login.scss */
input {
  width: 100%;
  height: 2.625rem;
  margin-bottom: 1.5rem;
  padding: 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #9c9c9c;
  border-radius: 0;
  box-shadow: none;
  box-sizing: content-box;
  background-color: transparent;
  font-size: 1rem;
}

/* line 82, app/assets/stylesheets/login/login.scss */
input::-moz-placeholder {
  color: #d1d1d1;
}
input:-ms-input-placeholder {
  color: #d1d1d1;
}
input::placeholder {
  color: #d1d1d1;
}

/* line 86, app/assets/stylesheets/login/login.scss */
input:focus {
  transition: .3s ease-out;
  border-bottom: 1px solid #4d1943;
  box-shadow: 0 1px 0 0 #4d1943;
}

/* line 92, app/assets/stylesheets/login/login.scss */
input[type="submit"] {
  margin-top: 1.5rem;
  border: none;
  border-radius: 2px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  background-color: #59224f;
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #ffffff;
}

/* line 105, app/assets/stylesheets/login/login.scss */
input[type="submit"]:hover {
  transition: .3s ease-out;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
  background-color: #864679;
  cursor: pointer;
}

/* line 112, app/assets/stylesheets/login/login.scss */
button.sso-button {
  box-sizing: border-box;
  width: 80%;
  background-color: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 2px;
  margin: 1.5rem auto;
  padding: 0.75rem;
}

/* line 122, app/assets/stylesheets/login/login.scss */
button.sso-button:hover {
  transition: .3s ease-out;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border-color: #bdc8d3;
  background-color: #f0f2f5;
  cursor: pointer;
}

/* line 130, app/assets/stylesheets/login/login.scss */
.sso-button .logo {
  vertical-align: middle;
  height: 1.5rem;
  margin-right: 0.75rem;
  /* overwrite display block from body */
  display: inline-block;
}

/* line 137, app/assets/stylesheets/login/login.scss */
.sso-button svg {
  height: 1.5rem;
  width: auto;
}

/* line 141, app/assets/stylesheets/login/login.scss */
.sso-button .text {
  vertical-align: middle;
  font-size: 1rem;
  font-weight: 600;
  /* overwrite display block from body */
  display: inline;
}

/* line 148, app/assets/stylesheets/login/login.scss */
#microsoft-auth .text {
  font-family: "Segoe UI Semibold", Arial, Helvetica, sans-serif !important;
  color: black;
}

/* line 153, app/assets/stylesheets/login/login.scss */
.error-display {
  display: block;
  color: #e77474;
  border-left-color: #e77474;
  background-color: #ffe0e0;
  border-left: solid 3px #e77474;
  padding: 8px 10px;
  margin: 10px 0;
  position: relative;
}

/* line 163, app/assets/stylesheets/login/login.scss */
.error-display i.material-icons {
  vertical-align: middle;
  margin-right: 5px;
  color: #e77474;
}

/* line 170, app/assets/stylesheets/login/login.scss */
#password-toggle {
  float: right;
  position: absolute;
  right: 10px;
  top: 1.6rem;
  cursor: pointer;
  z-index: 2;
}

/* line 179, app/assets/stylesheets/login/login.scss */
.help-link {
  display: block;
  width: 100%;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.875rem;
  text-decoration: none;
  color: #51979a;
}

/* line 188, app/assets/stylesheets/login/login.scss */
.help-link:hover {
  text-decoration: underline;
}

/* fancy checkbox */
/* line 194, app/assets/stylesheets/login/login.scss */
.custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* line 203, app/assets/stylesheets/login/login.scss */
.custom-checkbox input {
  display: none;
}

/* line 207, app/assets/stylesheets/login/login.scss */
.custom-checkbox .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #575757;
  border-radius: 4px;
  margin-right: 8px;
  position: relative;
  transition: background 0.2s;
}

/* line 217, app/assets/stylesheets/login/login.scss */
.custom-checkbox input:checked + .checkmark {
  background-color: #51979a;
  border-color: #51979a;
}

/* line 222, app/assets/stylesheets/login/login.scss */
.custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 7px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@media screen and (max-width: 667px) {
  /* line 235, app/assets/stylesheets/login/login.scss */
  html {
    overflow: hidden;
    background-color: white;
  }
  /* line 242, app/assets/stylesheets/login/login.scss */
  #app-logo > img {
    bottom: 560px;
    width: 100px;
  }
  /* line 247, app/assets/stylesheets/login/login.scss */
  #app-logo.omniauth > img {
    bottom: 355px;
  }
  /* line 252, app/assets/stylesheets/login/login.scss */
  #login-box {
    width: 100%;
    max-width: 450px;
    border: 0;
    box-shadow: none;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
/*
 * This is a manifest file that'll be compiled into login.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the top of the
 * compiled file, but it's generally better to create a new file per style scope.
 *
 *

 */
