body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url('background-image.jpg');
  background-size: cover;
}

.glass-container {
  width: 350px;
  height: auto;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 1px solid #fff;
  padding: 20px;
}


.glass-container::before {
  content: '';
  position: absolute;
  top: 0; /* Ensures it starts at the top of the container */
  left: 0; /* Ensures it starts at the left of the container */
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1;
}


.login-box {
  text-align: center;
}

h1 {
  color: #fff;
  margin-bottom: 20px;
}

textarea {
  resize: none;
  width: 80%;
  height: 100px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 10px;
  background: transparent;
  color: #fff;
}

textarea::placeholder {
  color: #fff;
}

.button-container button {
  background: #fff;
  color: black;
  padding: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
}

.button-container button:hover {
  background: transparent;
  color: white;
  outline: 1px solid #fff;
}

h2 {
  color: #fff;
  margin-top: 30px;
}

p {
  font-size: 16px;
  color: #fff;
  margin-top: 15px;
}

a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

label {
  color: white;
}

button#finishedButton {
  margin-top: 20px;
  background-color: #fff;
  color: black;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
}
