@charset "utf-8";


/* contact for css */

.g-recaptcha {
  margin-bottom: 1.5rem; /* or 16px */
  display: block;
}

.captcha-wrapper {
  max-width: 100%;
  overflow: hidden;
  display: flex;
}

.captcha-wrapper .g-recaptcha {
  transform: scale(1); /* default desktop */
  transform-origin: 0 0;
}

.g-recaptcha > div {
  max-width: 100% !important;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #eee;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Soft outer shadow */
  border: 1px solid #ccc;               /* Light grey border */
  font-family: "Segoe UI", Roboto, sans-serif;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00a351;
  box-shadow: 0 0 5px rgba(0, 163, 81, 0.3);
}

.contact-form button {
  background-color: #00a351;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #008f45;
}
	
form select {
  width: 100%;
  padding: 0.6em;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  transition: border 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  margin-bottom: 1em;
}

form select:focus {
  border-color: #00a351;
  box-shadow: 0 0 0 3px rgba(0, 163, 81, 0.2);
  outline: none;
}
	
form select,
form textarea {
  margin-bottom: 1em;
}
	
input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 1rem;
}


@media (max-width: 400px) {
  .captcha-wrapper .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
  }
}
	
/* end contact for css */	
