html, body {
  height: 100%;
  margin: 0;
  background: rgba(203,203,210,.15);
}
/* notifications */
.notification_body {
  top: 5rem;
  z-index: 100;
  position: fixed;
  width: 100%;
  justify-content: center!important;
  display: flex!important;
}
.notification {
  padding: 10px 0;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.2);
  position: relative;
  margin-bottom: 10px;
  max-width: 350px;
  width: 100%;

}
.notification:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-top-left-radius:4px;
  border-bottom-left-radius: 4px;
}
.notification_type {
  color: #3e3e3e;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
}
.notification_message {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0;
  color: #878787;
}
.notification_content{
  padding-left:30px;
  padding-right:50px;
}
.notification_close {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 14px;
  cursor:pointer;
  height: 14px;
  fill:#878787;
  transform: translateY(-50%);
}
.notification-success:before{
  background-color:#28A745;
}
.notification-warning:before{
  background-color:#FFC107;
}
.notification-error:before{
  background-color:#DC3545;
}

.card {
  width: 100%;
  max-width: 330px;
  border-radius: .50rem!important;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  border: 0 !important;
  margin-bottom: 1rem;
}

.wrapper {
  height: 100%;
}

.form-signin .checkbox {
  font-weight: 400;
}
.form-signin .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}
input[name="username"], input[name="user_password"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  height: auto;
  padding: 10px;
}
input[name="password"], input[name="user_password_repeat"] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  height: auto;
  padding: 10px;
}

input.form-control:focus {
  box-shadow: none;
}

button.btn.btn-dark:active {
  transform: translateY(1px);
}
