/* Background with dark overlay */
body {
  position: relative;
  background-color: aliceblue;
  background-image: url("bgimage2.jpg"); /* Use your actual file name */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow: hidden;
}

/* Dark overlay on top of background */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 0;
}

/* Centered container */
.signin-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Frosted glass form box */
.form-box {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Logo */
.logo {
  font-family: 'Allura', cursive;
  font-size: 3em;
  margin-bottom: 10px;
  color: white;
}

/* Inputs */
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1em;
}

/* Button */
button.signin-link {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

button.signin-link:hover {
  background-color: #333;
}

/* Sign-up text */
.signup-link {
  margin-top: 15px;
  color: white;
  font-size: 0.9em;
}

.signup-link a {
  color: #00ffff;
  text-decoration: none;
}

.signup-link a:hover {
  text-decoration: underline;
}

