body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("../assets/images/signin-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.main {
  width: 380px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 10, 0.222);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1rem;
}

input {
  width: 100%;
  padding: 18px;
  border: 2px solid black;
  border-radius: 10px;
  background: white;
  color: black;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

::placeholder {
  color: black;
  font-weight: bold;
}

.btn-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.btn {
  width: 100px;
  padding: 12px 0;
  border-radius: 10px;
  background: white;
  color: black;
  border: 2px solid black;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background: black;
  color: white;
  transform: translateY(-2px);
}

.links {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: white;
}

.links br {
  display: block;
  margin: 0.5rem 0;
  content: "";
}

.links a {
  color: white;
  text-decoration: underline;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.member-text,
.guest-prefix {
  color: black;
}

.signup-link,
.guest-link {
  color: white;
}

.forgot-password {
  text-align: center;
  margin-top: 1rem;
}

.forgot-password a {
  color: white;
  text-decoration: underline;
  font-size: 14px;
  transition: all 0.3s ease;
}
