.contact-form { /* css for contact form*/
  max-width: 400px;
  margin: 30px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #fafafa;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-family: sans-serif;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .captcha-wrapper {
  margin-top: 20px;
  text-align: center;
}

.contact-form input[type="submit"] {
  margin-top: 20px;
  background-color: #007BFF;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form input[type="submit"]:hover {
  background-color: #0056b3;
}     
.captcha-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.contact-form select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 14px;
}
.form-divider {
  border-top: 2px dashed #000;
  margin: 30px 0;
}
.scrollable-textarea {
  max-height: 150px;
  overflow-y: auto;
  resize: vertical;
}
.rotating-image {
  animation: rotate 2s linear infinite;
  transform-origin: center center;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}