/* Fullscreen background */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  background: url('bgr.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
h2{
color:Black;
}

/* Glass container */
.glass-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  width: 100%;
  text-align: center;
  color: white;
}

/* Inputs and buttons */
input[type="text"] {
  width: 90%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 8px;
  border: none;
  outline: none;
}

button {
  width: 94%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background-color: #0078ff;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #218838;
}

/* Login link */
.login-link {
  margin-top: 15px;
}

.login-link a {
  color: #2090f7;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Optional: Background blur overlay */
.background-blur {
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  z-index: -1;
}
