body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: url("images/biriyani.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  background: rgba(255, 255, 255, 0.92);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.3);
  text-align: center;
  width: 350px;
}

.login-box h1 {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  color: #d35400;
  margin-bottom: 25px;
}

.login-box input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.login-box button {
  width: 100%;
  padding: 12px;
  background: #e67e22;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.login-box button:hover {
  background: #ca5c06;
}

.options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
  font-size: 14px;
}

.options label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.options a {
  text-decoration: none;
  font-size: 14px;
  color: #2c3e50;
}

.options a:hover {
  text-decoration: underline;
}

.footer-text {
  font-size: 13px;
  margin-top: 10px;
  color: #555;
}

.footer-text a {
  color: #e67e22;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}
