body,
html {
  height: 100%;
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}
.login-bg {
  background: #085eb8;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-box {
  background: #fff;
  border-radius: 10px;
  width: 350px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  padding: 28px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.login-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
.input-row {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border-radius: 6px;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  padding: 0 14px;
  height: 44px;
}
.input-row .icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-right: 7px;
}
.input-row input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  flex: 1;
  padding: 7px 0;
  color: #222;
}
.login-btn {
  background: #085eb8;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 0;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.18s;
}
.login-btn:hover {
  background: #022e4d;
}
.error {
  color: #e53935;
  background: #ffeaea;
  border-radius: 5px;
  margin: 7px 0;
  padding: 7px 10px;
  text-align: center;
  font-weight: bold;
}
