.error{
  text-align: left;
  width: 100%;
  color: red;
  font-size: .85rem;
  margin-left: 3rem;
}
.mt-2{
  margin-top: 16px !important;
}
.mb-2{
  margin-bottom: 16px !important;
}
.input-group-error {
  min-height: 60px;
}
.login{
  overflow: hidden;
  width: 100%;
  height: 100vh;
  text-align: center;
  background: linear-gradient(#def2ff,#fff);
}
.login-card{
  margin:12vh auto auto;
  background: transparent;
  box-shadow: none;
}
.login-header {
  /* background: #0475bb; */
  background: #d4d6d8;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 12px;
  box-shadow: 0 -2px 5px -3px #343434;
}
.login-header .brand-img{
  max-height: 38px;
  width: auto;
  height: auto;
}
.login-card .card-body{
  background: #fff;
  box-shadow: 0px 2px 4px -1px #00000036;
  border-radius: 0 0 .5rem .5rem;
}
@media screen and (max-width:639px) {
  .login-card{
      width: 300px;
  }
}
@media screen and (min-width:640px) {
  .login-card{
      width: 380px;
  }
}

.switch {
position: relative;
height: 26px;
width: 278px;
margin: 8px auto;
background: linear-gradient(#fff,#d8e8f2,#fafafa);
border-radius: 14px;
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15), 0 1px rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15), 0 1px rgba(255, 255, 255, 0.1);
}

.switch-label {
position: relative;
z-index: 2;
float: left;
width: 50%;
font-size: .8rem;
color: #0475bb;
text-align: center;
text-shadow:none;
cursor: pointer;
white-space: nowrap;
text-align: center;
vertical-align: middle;
line-height: 2;
}
.switch-label:active {
font-weight: bold;
}

.switch-input {
display: none;
}
.switch-input:checked + .switch-label {
font-weight: 500;
color: #fff;
letter-spacing: .3px;
-webkit-transition: 0.15s ease-out;
-moz-transition: 0.15s ease-out;
-ms-transition: 0.15s ease-out;
-o-transition: 0.15s ease-out;
transition: 0.15s ease-out;
}
.switch-input:checked + .switch-label-on ~ .switch-selection {
left: 138px;
}

.switch-selection {
position: absolute;
z-index: 1;
display: block;
width: 50%;
height: inherit;
border-radius: 14px;
-webkit-transition: left 0.15s ease-out;
-moz-transition: left 0.15s ease-out;
-ms-transition: left 0.15s ease-out;
-o-transition: left 0.15s ease-out;
transition: left 0.15s ease-out;
}
.switch-blue .switch-selection {
background: linear-gradient(#0e87d2,#09639b,#0783cf);
}