body {
  background: linear-gradient(45deg, #212121, #575656);
  height: 100vh;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  position: relative;
  text-align: center;
}

form {
  background: rgba(255, 255, 255, 0.6); /* Increased opacity */
  padding: 3em;
  height: 320px;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.6); /* Increased visibility */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
}

p {
  font-weight: 500;
  color: #fff;
  opacity: 0.9; /* Make text more visible */
  font-size: 1.4rem;
  margin-bottom: 60px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

a {
  text-decoration: none;
  color: #ddd;
  font-size: 12px;
}

a:hover {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

input {
  background: transparent;
  width: 200px;
  padding: 1em;
  margin-bottom: 2em;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 5000px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.8); /* Increased contrast */
}

input:hover {
  background: rgba(255, 255, 255, 0.1);
}

input[type="submit"] {
  margin-top: 10px;
  width: 150px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  cursor: pointer;
}

input[type="submit"]:hover {
  background: rgba(255, 255, 255, 0.5);
}

.drop {
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 10px 10px 60px -8px rgba(0, 0, 0, 0.2);
  position: absolute;
}

.drop-1 {
  height: 80px;
  width: 80px;
  top: -20px;
  left: -40px;
  z-index: -1;
}

.drop-2 {
  height: 80px;
  width: 80px;
  bottom: -30px;
  right: -10px;
}

.drop-3 {
  height: 100px;
  width: 100px;
  bottom: 120px;
  right: -50px;
  z-index: -1;
}

a, input:focus, select:focus, textarea:focus, button:focus {
  outline: none;
}
