html,
body {
  height: 100%;
}

main {
    min-height: initial;
    overflow: auto;
}

body {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  background-color: #f5f5f5;
}

.register-sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.register-section--secondary {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  display: flex;
}

.form-register {
  width: 100%;
  max-width: 600px;
  padding: 15px;
  margin: auto;
}

.form-register form {
    width: 100%;
    max-width: 420px;
    padding: 15px;
    margin: auto;
}

.form-register .checkbox {
  font-weight: 400;
}

.form-register .form-floating:focus-within {
  z-index: 2;
}

.form-register input[type="password"] {
  margin-bottom: 1rem;
}


.btn-register {
    position: relative;
    overflow: hidden;
    padding-left: calc(60px + 1rem);
    height: 50px;
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
    line-height: 32px;
}
.btn-register-icon {
    text-transform: none !important;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
    height: 52px;
    width: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #0b5ed7;
    position: absolute;
    left: -1px;
    top: -1px;
    background-image: url(../brand/elc-logo-white.svg);
    background-size: 26px;
}

.link a {
    text-decoration: none;
}

@media (min-width: 768px) {
    .register-sections {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  }
  .register-section--primary {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .register-section--secondary {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    display: flex;
  }
  
}

.validation-summary-errors ul {
    list-style: none;
    padding: 0;
}
.validation-summary-errors ul {
    list-style: none;
    padding: 0;
}
    .validation-summary-errors ul li {
        position: relative;
        padding: 0.5rem 1.25rem;
        margin-bottom: 1rem;
        border: 1px solid transparent;
        border-radius: 0.25rem;
        color: #721c24;
        background-color: #f8d7da;
        border-color: #f5c6cb;
    }