body {
  height: 100vh;
  margin: 0;
  background: linear-gradient(to bottom, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}

.glass-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 500px;
  margin-left: 10px;
  margin-right: 10px;
  width: 100%;
  color: white;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
}

.form-control::placeholder {
  color: #ddd;
}

.form-control:focus {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.3);
}

.btn-custom {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
}

.btn-custom:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.input-group-text {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
}