body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url('../image/login\ page\ background\ image.jpeg') no-repeat center center/cover;
  color: #fff;
}

.login-container {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 400px;
}

.quote {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-form input {
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  outline: none;
  font-size: 1rem;
}

.login-form input:invalid {
  border: 2px solid #e63946;
}

.buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.btn.login {
  background-color: #e63946;
  color: #fff;
}

.btn.signup {
  background-color: #457b9d;
  color: #fff;
}

.btn:hover {
  opacity: 0.9;
}
