* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-image: url(images/images7.jpeg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container {
  background-color: black;
  opacity: 0.7;
  color: white;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.login-box h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.login-box label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.login-box input {
  width: 100%;
  padding: 10px;
  background: transparent;
  margin-bottom: 20px;
  color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 20px;
}
button:hover {
  background-color: #0056b3;
}
.forgot-password:hover {
  text-decoration: underline;
}
