.background {
  background-color: #2c3e50;
  display: table;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
}
/* .login-container * {
  color: #fff;
  font-weight: normal;
  line-height: 1em;
} */
.login-container {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  max-width: 1024px;
}
.login-container form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0 !important;
}

.modal-header h1 {
  color: #fff;
  font-family: cp italic, sans-serif;
  font-size: 3em;
  margin-bottom: 30px;
}

.form-control {
  display: block;
  width: 100%;
  height: 42px;
  padding: 10px 15px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #2c3e50;
  background-color: #fff;
  background-image: none;
  border: 1px solid #dce4ec;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.input-group {
  margin-bottom: 4rem;
}

.input-group-prepend {
  margin-right: -1px;
  display: flex;
}
.input-group-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-group > .input-group-prepend > .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-prepend > .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.modal-footer {
  display: flex;
  border-top: 0 !important;
}

.btn-login {
  flex: 1;
  background-color: orangered !important;
  font-size: 1.8rem !important;
}
.error-message {
  display: block;
  background: #e72e32;
  padding: 20px;
  width: 100%;
  border-radius: 5px;
  text-align: center;
  color: #fff;
}

.hidden {
  opacity: 0;
  filter: blur(100%);
  transition: all 1s;
  visibility: hidden;
}
.show {
  opacity: 1;
  filter: blur(0);
  visibility: visible;
  /* transform: translateX(0);     */
}

.hasAccountText span {
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
}
.hasAccountText {
  text-align: center;
  color: #fff;
}
.switch-panel {
  color: #fff;
  position: absolute;
  right: 0;
  top: 20;
  cursor: pointer;
}
.switch-panel:hover{
  color: orangered;
}
