.contact-section-container {
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 0;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.contact-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(34, 34, 34, 0.9);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  pointer-events: fill;
}

.contact-form h1 {
  margin-bottom: 20px;
  color: rgb(207, 255, 4);
  font-size: 28px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  font-size: 16px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 4px;
  background-color: #444;
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: #555;
  box-shadow: 0 0 8px rgba(209, 255, 4, 0.623);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: rgb(207, 255, 4);
  color: #000;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form button i {
  margin-right: 10px;
}

.contact-form button:hover {
  background-color: rgb(165, 194, 39);
}

/* Decorative Elements */
.decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.circle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: moveCircle 20s infinite linear alternate;
}

@keyframes moveCircle {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
  }
}

.line {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  height: 2px;
  animation: moveLine 10s infinite linear alternate;
}

@keyframes moveLine {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
