html {
  font-family: "Open Sans";
  font-size: 12px;
  min-height: 100%;
  height: 100%;
}
body {
  margin: 0;
  min-height: 100%;
  width: 100%;
  position: relative;
  font-family: "Open Sans";
  padding: 0;
}
header {
  position: relative;
  height: 115px;
  text-align: center;
}
#login-banner {
  width: 1200px;
  display: inline-block;
  position: relative;
  margin-top: 20px;
  line-height: 80px;
  font-size: 225%;
  font-weight: bold;
  text-align: center;
}
#login-banner img#logo {
  float: left;
  height: 75px;
}
body:not(.login) div#body {
  width: 1300px;
  margin: 20px auto;
}
body.login {
  background: #f6f5f3 !important;
}
body.login div#body {
  background: #a5aeb7;
  box-sizing: border-box;
  width: 100%;
  height: calc(100vh - 40px);
  min-height: 700px;
  padding-top: 140px;
  padding-bottom: 0;
  margin: 0;
}
div#body div#login-body {
  margin: 0 auto 80px;
  padding: 10px 0;
  width: 1300px;
}
div#body div#login-body #login-box {
  width: 685px;
  height: 374px;
  margin: 0 auto;
  font-size: 15px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 4px #555555;
  display: flex;
}
div#login-box .logo-container {
  width: 260px;
  height: 100%;
  display: inline-block;
  background: #f7f7f7;
}
div#login-box .logo-container .logo-wrapper {
  width: 260px;
  height: 374px;
  display: table-cell;
  vertical-align: middle;
  position: relative;
}
div#login-box .logo-container .logo-wrapper img.login-logo {
  max-width: 200px;
  margin: auto;
  display: block;
}
div#login-box .form-wrapper {
  display: inline-block;
  width: 425px;
  height: 100%;
  vertical-align: top;
  background: #363A40;
  padding: 24px 30px 32px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
div#login-box p#login-box-caption {
  color: #B4B4B4;
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
}
div#login-box div.form-group {
  margin-bottom: 20px;
  position: relative;
  display: table;
  width: 100%;
}
div#login-box div.form-group label {
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 9px;
  display: inline-block;
}
div.form-group input[type=text],
div.form-group select {
  padding: 0px 6px;
  border: 1px solid #5E6166;
  background: #51555C;
  font-weight: 300;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  height: 30px;
  line-height: 30px;
  color: #ffffff;
}
div#body div#login-body #login-box input[type=submit] {
  height: 35px;
  min-width: 0px;
  padding: 0px 23px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 400;
  background-color: #0280e5;
  cursor: pointer;
  float: right;
  border: 0;
  color: #ffffff;
  line-height: 35px;
  margin-left: 10px;
}

footer {
  font-size: 16px;
  text-align: center;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(to right, #232a3b, #252c3e);
  color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
}

a, a:link, a:visited, a:active {
  color: #f75e4c;
  text-decoration: underline;
}

a:hover {
  color: #f75e4c;
  text-decoration: none;
}

#errors {
  color: #B4B4B4;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

table.summary {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 10px;
}

table.summary th {
  text-align: left;
}

table.summary th,
table.summary td {
  padding: 3px 8px;
  border: 1px solid #000000;
}

table.summary a {
  text-decoration: none;
}

table.summary a:hover {
  text-decoration: underline;
}

.clear {
  margin: 0;
  padding: 0;
  clear: both;
}

.text-center {
  text-align: center !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.red {
  color: #ff0000 !important;
}

#signature_container {
  display: inline-block;
  margin-bottom: 20px;
}

#attendee-edit .field-required:after {
  content: ' *';
  color: red;
}

#attendee-form input[type=submit],
#attendee-form input[type=button] {
  padding: 7px 10px;
}

.note {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 5px;
}

#signin-form {
  display: inline-block;
  text-align: left;
}

#attendee-form {
  margin-bottom: 50px;
}

.row {
  display: flex;
  justify-content: space-between;
}

.col-6 {
  width: 49.5%;
}

@media screen and (max-width: 1199px) {
  #login-banner {
    text-align: left;
  }

  #login-banner img#logo {
    margin-right: 20px;
  }

  #login-banner,
  body:not(.login) div#body {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 939px) {
  header {
    height: auto;
  }

  #login-banner {
    text-align: center;
    line-height: 90px;
    height: auto;
  }

  #login-banner img#logo {
    display: block;
    margin: 0 auto 10px;
    float: none;
  }

  #login-text {
    display: none;
  }

  body.login div #login-body {
    text-align: center;
  }

  body.login div #login-body form {
    display: inline-block;
  }

  body.login div #login-body,
  #login-footer {
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
  }

  #login-footer {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 755px) {
  #login-banner {
    text-align: center;
    line-height: 42px;
    height: auto;
  }

  #login-box {
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }

  #login-box label {
    text-align: left;
    width: 100%;
  }

  label.blank {
    display: none;
  }

  #login-box input[type=text],
  #login-box select,
  .form-group input[type=text],
  .form-group select {
    width: 100%;
  }

  #login-box input[type=submit] {
    width: 100%;
    background-size: cover;
  }

  #attendee-form [type=submit],
  #attendee-form [type=button] {
    width: 100%;
    margin-bottom: 10px;
  }

  #login-box .form-group {
    margin-bottom: 15px;
  }

  .row {
    display: block;
  }

  .col-6 {
    width: 100%;
  }
}