body {
  font-family: Arial, sans-serif;
  background-image: url('https://i.ibb.co/84QG9MZ/837bde054612ebcfce715125a3434f45.gif'); 
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 24px;
}

.container {
  background: white;
  padding: 40px;
  border: 3px solid blue;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 2;
  opacity: 0.6;
  text-align: center;
}

h2, h3 {
  text-align: center;
}

label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 3px solid lightblue;
  border-radius: 7px;
  box-sizing: border-box;
}

button[type="submit"],
.copy-button {
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  border: none;
  background-color: green;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  
}

button[type="submit"]:hover,
.copy-button:hover {
  background-color: blue;
}

.hidden {
  display: none;
}

.response-section {
  margin-top: 20px;
}

.response-section.fade-in {
  animation: fadeIn 0.5s;
}

pre {
  background: white;
  padding: 10px;
  border-radius: 6px;
  overflow-x: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
