html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  display: grid;
  justify-items: center;
  align-items: center;
  background-color: rgb(167, 167, 167);
}

#login-header {
  background-image: linear-gradient(
    to left,
    violet,
    indigo,
    blue,
    green,
    yellow,
    orange,
    red
  );
  -webkit-background-clip: text;
  color: transparent;
  font-size: 3em;
}

#main-holder {
  width: 70%;
  height: 90%;
  display: grid;
  justify-items: center;
  align-items: center;
  background-color: rgb(0, 0, 0);
  border-radius: 7px;
  box-shadow: 0px 0px 5px 2px black;

  border-radius: 25px;
  border: 2px solid #ffffff;
  padding: 20px;
}

#login-error-msg-holder {
  width: 100%;
  height: 100%;
  display: grid;
  justify-items: center;
  align-items: center;
}

#login-error-msg {
  width: 23%;
  text-align: center;
  margin: 0;
  padding: 5px;
  font-size: 12px;
  font-weight: bold;
  color: #8a0000;
  border: 1px solid #8a0000;
  background-color: #e58f8f;
  opacity: 0;
}

#error-msg-second-line {
  display: block;
}

#login-form {
  align-self: flex-start;
  display: grid;
  justify-items: center;
  align-items: center;
  width: 40%;
}

.login-form-field::placeholder {
  color: #0f0808;
}

.login-form-field {
  width: 80%;
  border: none;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 30px;
  border-radius: 3px;
  outline: none;
  padding: 10px 10px 10px 10px;
}

#login-form-submit {
  width: 70%;
  height: 50;
  padding: 20px;
  border: none;
  border-radius: 5px;
  padding: 10px;
  color: white;
  font-weight: bold;
  background-color: forestgreen;
  cursor: pointer;
  outline: none;
}
