body, html {
    height: 100%;
}
  
* {
  box-sizing: border-box;
}

.validation_error{
  color: yellowgreen;
}

.bg-img {
  /* The image used */
  background-image: url("../uibase_2021_06/img/login_page_bg.jpg");

  /* Control the height of the image */
  min-height: 380px;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Add styles to the form container */
.container {
  margin: 0 auto;
  max-width: 350px;
  padding-top: 150px;
  text-align: center;
}

.login-header{
    color: white;
}

.login-body{
  padding: 16px;
}

.login-footer{
  color: white;
}