body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f1f1f1;
  margin: 0;
  padding: 0;
}

.login-box {
  background: #fff;
  padding: 40px;
  width: 360px;
  margin: 100px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #0073aa;
  border-radius: 4px;
}

.login-box h1 {
  margin-bottom: 20px;
  color: #0073aa;
}

.login-box label {
  display: block;
  margin-top: 10px;
}

.login-box input[type="email"],
.login-box input[type="password"] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box;
}

.login-box button {
  width: 100%;
  margin-top: 20px;
  padding: 10px;
  background: #0073aa;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.login-box .links {
  text-align: center;
  margin-top: 15px;
}

.login-box .links a {
  color: #0073aa;
  text-decoration: none;
}

/* Alert Box */
.alert-box {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.alert-content {
  background: #fff;
  padding: 20px 30px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.alert-content p {
  margin: 0 0 15px;
  color: #333;
}

.alert-content button {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
}

/* Homepage */
.home-page .main-content {
  padding: 100px;
  text-align: center;
}
