@charset "utf-8";


.inquiry-form {
  max-width: 1000px;
  margin: 0px auto;
  margin-bottom:70px;
  padding:50px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.inquiry-form .form-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  color: #333;
  position: relative;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #444;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #2b72ff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(43,114,255,0.15);
}

.required {
  color: #e63946;
  margin-left: 3px;
}

.form-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 7px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
}

.btn.cancel {
  background: #eee;
  color: #333;
}

.btn.submit {
  background: #2b72ff;
  color: #fff;
  border:0
}

.btn.submit:hover {
  background: #2158c9;
}

#captcha_mp3{border:1px solid #777; margin:10px 5px; padding:0 10px; }
#captcha_reload{border:1px solid #777; margin:10px 5px; padding:0 10px; }
/*.btn_cke_sc{display:none !important;}*/


@media (max-width: 600px) {
  .inquiry-form {
    padding: 20px;
  }
  .form-buttons {
    flex-direction: column;
  }



}