.login-page {
  margin: 0;
  min-height: 100vh;
  background: url("../../content/images/back.jpeg") no-repeat center center/cover;
  font-family: Verdana;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 72px 0 20px;
  box-sizing: border-box;
}
.login-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 60px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.login-link {
  display: block;
  background-color: #2b6cd1;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
}
.login-link:hover {
  background-color: #1f4bb0;
}
hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}
sub {
  font-size: 14px;
}
/* Form layout */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Input + icon */
.input-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 10px 15px;
  border-radius: 6px;
  gap: 10px;
}
.input-group i {
  color: #555;
}
.input-group input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 16px;
}
/* Button */
.login-button {
  background-color: #2b6cd1;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
.login-button:hover {
  background-color: #1f4bb0;
}
/* Error message */
.error {
  color: red;
  font-size: 14px;
}
.news-banner-stack {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.news-banner {
  padding: 12px 18px;
  text-align: center;
  font-family: Verdana;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.news-banner-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.news-banner-link:hover {
  filter: brightness(0.98);
}
.news-major-outage {
  background: #f3c9c9;
  color: #6d1f1f;
}
.news-outage {
  background: #f7d9b5;
  color: #784718;
}
.news-maintenance {
  background: #cfe0f6;
  color: #254b77;
}
.news-general {
  background: #e3e3e3;
  color: #414141;
}
