.container {
  max-width: 85rem;
}

.navbar--logo-1 {
  min-height: 3rem;
}

.navbar--logo-1 .navbar__brand {
  padding: 24px 0;
}

body {
  background: #fff;
}

a {
  line-height: 1.5;
}

pre {
  overflow: auto;
}

.image-container {
  display: flex;
  height: inherit;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-flex: 1;
  -webkit-flex: auto;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

.content-container {
  max-width: 450px;
  margin: 0 auto;
}

.content-container > .card:first-child {
  min-height: 450px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.content-container > .card:first-child > .card__body {
  padding-top: 40px;
}

.card {
  box-shadow: none;
}

.card .logo-2 {
  height: inherit;
  width: 320px;
  margin: 0 auto;
}

.card .logo-2 img {
  height: auto;
  width: auto;
  margin: 0 auto;
}

.card h1.h2 {
  font-size: 24px;
}

.support-contact-info .phone > span.material-icons,
.support-contact-info .email > span.material-icons {
  vertical-align: middle;
}

.footer {
  background-color: #000;
  color: #fff;
}

.footer a {
  color: #fff;
}

.footer ul li {
  display: inline-block;
  margin: 0 4px;
}

.footer ul li::after {
  margin-left: 4px;
  content: '|';
}

.footer ul li:last-child::after {
  content: '';
}

@media (max-width: 768px) {
  main > .container {
    padding-bottom: 40px;
  }

  .card__body {
    padding: 1rem 0;
  }

  .card .logo-2 {
    height: 50px;
    width: 280px;
    margin: 0 auto;
  }

  .content-container > .card:first-child {
    min-height: 450px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  main > .container {
    min-height: 1000px;
  }
}

@media (min-width: 768px) and (min-height: 1000px) and (max-height: 1200px) {
  main > .container {
    min-height: 1200px;
  }
}

@media (min-width: 768px) and (min-height: 1200px) and (max-height: 1440px) {
  main > .container {
    min-height: 1440px;
  }
}

@media (min-width: 768px) and (min-height: 1440px) {
  main > .container {
    min-height: 100vh;
  }
}

/* Profile Page */
.profile-form {
  padding: 0.75rem;
  position: relative;
}

.form-overlay {
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.25);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 2;
}

.profile-form button {
  font-weight: 300;
}

.profile-form .form-group .control {
  border-color: #c2c8d0;
  background-color: #fff;
  color: #2d333a;
  height: 3.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.profile-form .control::placeholder {
  opacity: 0;
}

.profile-form .control:focus,
.profile-form .control:not(:placeholder-shown) {
  font-size: 1rem;
}

.profile-form .control:focus-within {
  border-color: #007cad;
  border-width: 2px;
  outline: 0;
}

.profile-form .control:autofill,
.profile-form .control:-webkit-autofill {
  background-color: #fff !important;
}

.profile-form .form-group > label {
  color: #6f7780;
  position: absolute;
  top: 50%;
  left: 1rem;
  padding: 1px 0.375rem;
  pointer-events: none;
  transform-origin: 0 0;
  transform: translateY(-50%);
  transition: transform 0.1s ease-in-out;
  z-index: 1;
}

.profile-form .form-group.is--invalid .hf-warning ~ label {
  transform: translateY(-100%);
}

.profile-form .control:focus-within ~ label {
  color: #007cad;
}

.profile-form .control:focus ~ label,
.profile-form .control:not(:placeholder-shown) ~ label {
  background-color: #fff;
  top: 0;
  transform: scale(0.88) translateX(-0.65rem) translateY(-0.75rem);
}

.profile-form .form-group.is--invalid .control:focus ~ label,
.profile-form .form-group.is--invalid .control:not(:placeholder-shown) ~ label {
  transform: scale(0.88) translateY(-0.75rem);
}
