* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: aliceblue;
  margin: 0;
  padding: 0;
}

#main-holder {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: aliceblue;
}
.error-message {
    text-emphasis-color: #890909;
  color:#BF1012;
      margin-top:10px;
    postion:center;
}
.login {
  width: 90%;
  max-width: 400px;
  background-color: #ffffff;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  margin: 0px auto 50px auto;
  padding: 20px;
}

.login h1 {
  text-align: center;
  color: #5b6574;
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dee0e4;
}

.login form {
  display: flex;
  flex-direction: column;
  padding-top: 5px;
}

.login label {
  background-color: #3274d6;
  color: #ffffff;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.login input[type="password"],
.login input[type="text"] {
  height: 50px;
  border: 1px solid #dee0e4;
  margin-bottom: 20px;
  padding: 5px 15px;
}

.login input[type="submit"] {
  padding: 15px;
  background-color: #3274d6;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.2s;
}

.login input[type="submit"]:hover {
  background-color: #2868c7;
  transition: background-color 0.2s;
}

@media (max-width: 600px) {
  .login label {
    width: auto;
  }

  .login input[type="password"],
  .login input[type="text"] {
    width: 100%;
  }
}