/* glass-style.css */

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: url("/attendance/hero-bg.jpg") center/cover no-repeat;
  font-family: 'Open Sans', sans-serif;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Optional dark overlay */
  z-index: -1;
}

.glass-wrapper {
  width: 400px;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.glass-wrapper h2 {
  text-align: center;
  margin-bottom: 20px;
}

.glass-form .form-control {
  background: transparent;
  color: #fff;
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
}

.glass-form .form-label {
  color: #ddd;
}

.glass-form .btn {
  background: #fff;
  color: #000;
  font-weight: bold;
  transition: 0.3s ease;
}

.glass-form .btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid #fff;
  color: #fff;
}

.alert {
  font-size: 0.9rem;
}
