body {
  background-color: #f9f8f6;
}

.login-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 4rem;

  justify-content: center;
  align-items: center;
  background-color: #f9f8f6;
}

.login-container h2 {
  font-family: "Inknut Antiqua";
  font-size: 1.5rem;
}

#login-form {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.username-form,
.password-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.username-form label,
.password-form label,
.username-form #error-message {
  align-self: center;
  text-align: center;
}

#login-form input {
  width: 100%;
  max-width: 420px;
}

#login-form input {
  padding: 10px;
  border: 2px solid;
  border-radius: 8px;
  margin-bottom: 2rem;
}

#login-form button {
  width: fit-content;
  margin: 1rem auto 0;
  display: block;
  border-radius: 8px;
  padding: 5px 40px;
  border: 2px solid;
  font-size: 1.5rem;
  background-color: white;
  margin-bottom: 2rem;
}

.error {
  color: #c62828;
  font-size: 0.9rem;
  margin-top: -1.5rem;
  margin-bottom: 1rem;
  min-height: 1.1rem;
}

#no-account {
  color: rgba(0, 0, 0, 0.44);

  font-family: "Patrick Hand";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: 0.18px;
}


.login-alert {
    border: 1px solid #d0d7e2;
    border-left-width: 6px;
    border-radius: 10px;
    padding: 22px 24px 80px;
    min-height: 140px;
    background: #f8fafc;
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    margin-bottom: 18px;
    position: relative;
    text-align: center;
}

.login-alert.alert-danger {
    background: #fff5f5;
    color: #7a1b1b;
    border-color: #f1b7b7;
}

.login-alert.alert-warning {
    background: #f9fbff;
    border-color: #d0d7e2;
    color: #0f172a;
}

.login-alert__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    display: grid;
    place-items: center;
    font-size: 18px;
    color: inherit;
}

.login-alert__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    word-break: break-word;
}

.login-alert__message {
    font-size: 14px;
    color: #5f6368;
    word-break: break-word;
    margin-bottom: 6px;
}

.login-alert__content {
    text-align: right;
    margin-right: 8px;
    padding-right: 8px;
    margin-left: auto;
}

#forgot-password {
  color: rgba(0, 0, 0, 0.44);
  font-family: "Patrick Hand";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: 0.18px;
  margin-top: -0.5rem;
  margin-bottom: 0.75rem;
}

.login-alert .btn-close {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: #d32f2f;
    color: #fff;
    opacity: 1;
    border: none;
    width: auto;
    height: auto;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1;
    background-image: none;
    cursor: pointer;
}
