.login-page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f7fa;
  font-family: Arial, sans-serif;
}

.login-form {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 320px;
  text-align: center;
}
.login-form h2 {
  margin-bottom: 1.5rem;
}
.login-form .form-group {
  margin-bottom: 1rem;
}
.login-form .form-group input {
  width: calc(100% - 2rem);
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease;
}
.login-form .form-group input:focus {
  border-color: #F5D063;
  outline: none;
}
.login-form button {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background: #F5D063;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.login-form button:hover {
  background: rgb(241.9277108434, 193.5602409639, 51.0722891566);
}
.login-form button[disabled=true] {
  background-color: #ececec;
  color: black;
}
.login-form .error-message {
  opacity: 0;
  margin-top: 1rem;
  color: #e74c3c;
  font-size: 0.9rem;
  text-align: center;
}
.login-form .error-message.active {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/*# sourceMappingURL=login.css.map */
