.login-bg {
  margin: 0;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  box-shadow: 0 2px 6px 3px rgba(0, 0, 0, 0.1) !important;
  border: none !important;
  border-radius: 6px !important;
}


/* sign up page */
.error-message {
  color: red;
  font-weight: bold;
  margin-top: 10px;
}


.valid {
  border-color: #45cb85 !important;
  padding-right: calc(1.5em + 1rem) !important;
  background-image: url("../images/right-green.png");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .25rem) center;
  background-size: calc(.75em + .5rem) calc(.75em + .5rem);
}

.invalid {
  border-color: #f06548 !important;
  padding-right: calc(1.5em + 1rem) !important;
  background-image: url("../images/error-exclaim.png");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .25rem) center;
  background-size: calc(.75em + .5rem) calc(.75em + .5rem);
}
.invalid-pass {
  border-color: #f06548 !important;
}
.valid-pass {
  border-color: #45cb85 !important;
}

.width-50per{
  width: 50%;
}

@media screen and (max-width :575.98px) {
  .width-50per{
  width: 100%;
}
}