
.contact-section {
  width: 40% !important;
  margin-top: 120px !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  background-color: #f4f4f4;
  border-radius: 12px;
  
}

.contact-section h2 {
  text-align: center;
  color: #4B0082;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

input, textarea {
  width: 90%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

button {
  background-color: #4B0082;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
  transition: transform 0.2s ease;
}

button:hover {
  background-color: #360061;
  transform: scale(1.05);
}

#form-status {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  color: green;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#form-status.show {
  opacity: 1;
}

/* Responsive */
@media screen and (max-width: 480px) {
.contact-section {
  width: 340px !important;
  background-color: #f4f4f4;
  border-radius: 12px;  
  }

form {
  position: relative;
  left: 0 !important;
  width: 300px;
  background-color: #f4f4f4;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
}
