/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none;max-width:100%;height:auto;}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

/*
  Loginpage Styles
  ================
*/

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: #4a4a4a;

  background-color: #fafafa;
  background-size: cover;
  background-attachment: fixed;
  background-color: #ffffff;
  background-image: linear-gradient(59deg, #ffffff, #DED5D0);

  width: 100%;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  transition: color 250ms ease;
}

.egg-container {
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  padding: 2rem;
  border-radius: 4px;
  min-width: 20.5rem;
  max-width: 90vw;
  transition: box-shadow 500ms ease;
}

.egg-container:hover {
  box-shadow: 0 12px 32px rgb(0 0 0 / 15%);
}

.egg-logo {
  text-align: center;
  margin-bottom: 1rem;
}

.egg-logo a {
  display: block;
  margin-bottom: 1.5rem;
  padding: 0 2rem;
}

.egg-info {
  margin-bottom: 2rem;
}

.egg-container form {
}

.egg-input {
  text-align: left;
  margin-bottom: 1rem;
}

.egg-input > label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.375rem;
}

.egg-input > input {
  width: 100%;
  min-height: 1.75rem;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 0.25rem 0.25rem;
  outline-color: #fd773d;
  outline-width: 1px;
}

.egg-input .checkbox {
    display: flex;
    align-items: center;
}

.egg-input .checkbox label {
  display: inline-block;
  font-weight: normal;
}

.egg-input .checkbox input {
  margin-right: 0.25rem;
}

.egg-input .checkbox .indicator {}

.egg-buttons button {
  width: 100%;
  display: inline-block;
  font-size: 0.875em;
  padding: 0.6125em 1em;
  margin-top: 0.5rem;
  line-height: normal;
  cursor: pointer;
  font-family: inherit;
  color: #fff;
  background-color: #fd773d;
  border: 1px solid #fd773d;
  border-radius: 2px;
  transition: color 250ms ease, background 250ms ease, border 250ms ease, box-shadow 250ms ease, -webkit-box-shadow 250ms ease;
  outline-color: #e36935;
}

.egg-buttons button:hover {
  background-color: #e36935;
}

.site-footer {
  margin-top: 2rem;
  text-align: center;
  color: #6a6a6a;
  font-size: 0.8125rem;
}

.site-footer a {
  color: #6a6a6a;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fd773d;
}

.site-footer .demo-request {
  font-size: 1rem;
}

.site-footer .demo-request a {
  color: #fd773d;
  text-decoration: underline;
}

.site-footer .demo-request a:hover {
  color: #e36935;
}

.site-footer .demo-request::before {
  content: '';
  display: block;
  margin: 0 auto 1.5rem auto;
  width: 45px;
  height: 2px;
  background: #fd773d;
}

.site-footer span {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
}

@media only screen and (max-height: 490px) {
  .site-footer span {
    position: relative;
    bottom: 0;
  }
}