body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff, #ffff00, #ff00ff, #00ffff);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease-in-out infinite;
  -webkit-animation: gradientAnimation 15s ease-in-out infinite;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f7f7f7;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.25);
  width: 80%;
  max-width: 600px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
}
.title {
  margin-bottom: 30px;
  color: #333;
  font-size: 24px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
input[type="text"] {
  width: 80%;
  padding: 15px;
  margin-bottom: 25px;
  border: 1px solid #ccc;
  border-radius: 15px;
  font-size: 16px;
  background-color: #f8f8f8;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}
input[type="text"]:focus {
  border-color: #007BFF;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.1);
}
p {
  margin: 10px 0;
  font-size: 14px;
  color: #666;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}
.info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 80%;
  margin-bottom: 20px;
}
.button-group {
  display: flex;
  justify-content: center;
  width: 80%;
}
button {
  padding: 15px 30px;
  margin: 10px;
  border: none;
  border-radius: 15px;
  background-color: #007BFF;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2), 0 3px 3px rgba(0, 0, 0, 0.25);
  position: relative;
  top: 0;
}
button:hover {
  background-color: #0056b3;
  top: -2px;
  box-shadow: 0 7px 12px rgba(0, 0, 0, 0.25), 0 4px 4px rgba(0, 0, 0, 0.3);
}
button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  box-shadow: none;
  top: 0;
}
button:active {
  top: 2px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.25);
}
.description {
  text-align: center;
  font-size: 14px;
  color: #777;
  padding: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(50px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.15);
}
