body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-image: url("/img/background.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.container {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
}

img.logo {
  width: 500px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  color: #003366;
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 600;
}

.buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.btn {
  background-color: #0073e6;
  color: white;
  padding: 12px 0;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: 500;
}

.btn:hover {
  background-color: #005bb5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.forgot-pass {
  margin-top: 15px;
  color: #0073e6;
  text-decoration: none;
  font-size: 14px;
}

.forgot-pass:hover {
  text-decoration: underline;
}

@media (max-width: 500px) {
  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 22px;
  }

  img.logo {
    width: 400px;
  }
}
