body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #16181b;
  color: #fff;
  margin: 0;
  padding: 0;
}

h1 {
  color: #f8a32f;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.form-container, .login-container {
  background: #25272a;
  max-width: 480px;
  margin: 40px auto;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px #f8a32f66;
}

label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

input[type="text"], input[type="password"], select {
  width: 100%;
  padding: 10px 12px;
  margin-top: 8px;
  border-radius: 6px;
  border: none;
  background: #1f2124;
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
}

button {
  margin-top: 25px;
  width: 100%;
  background-color: #f8a32f;
  border: none;
  padding: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #16181b;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #d18c21;
}

.error {
  margin-top: 10px;
  color: #ff5c5c;
  font-weight: 600;
  font-size: 0.9rem;
}

.logout-button {
  background-color: #bf4141;
}

.logout-button:hover {
  background-color: #991616;
}
