/* Login Page Styles */
.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('images/login-background.jpg'); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.login-container {
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  color: #fff;
}

.login-container h2 {
  color: #ffc700;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #222;
  color: #fff;
}

.form-group input:focus {
  outline: none;
  border-color: #ffc700;
}

button[type="submit"] {
  background-color: #ffc700;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

button[type="submit"]:hover {
  background-color: #e6b800;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
}

.login-container a {
  color: #ffc700;
  text-decoration: none;
}

.login-container a:hover {
  text-decoration: underline;
}
