*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  html, body {
    font-size: 50%;
  }
}

.login-bg {
  background-image: url("/assets/branding/cardinal/login-background.jpg");
  background-size: cover;
}

svg {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  overflow: visible;
}

.svg-icon {
  cursor: pointer;
}
.svg-icon path {
  stroke: rgba(255, 255, 255, 0.9);
  fill: none;
  stroke-width: 1;
}

.cont {
  position: relative;
  height: 100%;
  background-size: cover;
  overflow: auto;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.demo {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15rem;
  margin-top: -26.5rem;
  width: 334px;
  /* height: 502px; */
  height: 485px;
  overflow: hidden;
  border-radius: 18px;
  opacity: 1;
}

.login {
  position: relative;
  padding-top:50px;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
  -webkit-transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  transition: opacity 0.1s, -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  transition: opacity 0.1s, transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  transition: opacity 0.1s, transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25), -webkit-transform 0.3s cubic-bezier(0.17, -0.65, 0.665, 1.25);
  -webkit-transform: scale(1);
          transform: scale(1);
}
.login__form {
  position: absolute;
  top: 128px;
  left: 0;
  width: 100%;
  height: 50%;
  padding: 1.5rem 2.5rem;
  /*text-align: center;*/
}

.login__form .align-center {
  text-align: center;
}

/*
* OVERRIDE For new css on login
*/
.input-group-addon {
  padding: 5px 12px;
  background-color: #fff !important;
  border: 1px solid #fff !important;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}
.form-control {
  border-top-right-radius: 7px !important;
  border-bottom-right-radius: 7px !important;
  outline: none !important;
  border: 0 !important;
}

label,
a {
  color:#fff !important;
  font-size: 11px !important;
}
.input-group .form-control {
  height: 40px;
  outline: none !important;
  border: 0 !important;
  box-shadow: none;
}

.btn-default,
.btn-default:focus {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 7px;
  height: 40px;
  color:#fff !important;
  box-shadow: none;
  line-height: 25px;
}

footer {
  background: rgba(0,0,0,0.75);
  padding: 15px;
  width: 100%;
  color: #ffffff;
  font-size: 12px;
}