/*
 Theme Name: Woostify Child
 Theme URI: https://woostify.com/
 Description: Woostify WordPress theme example child theme.
 Author: Woostify
 Author URI: https://woostify.com/
 Template: woostify
 Version: 1.0.0
*/


.cf7-nice-form {
  max-width: 600px;
  margin: auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  font-family: 'Poppins', sans-serif;
}

.cf7-field {
  margin-bottom: 18px;
}

.cf7-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.cf7-field input,
.cf7-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.cf7-field textarea {
  min-height: 120px;
  resize: vertical;
}

.cf7-field input:focus,
.cf7-field textarea:focus {
  border-color: #6c63ff;
  box-shadow: 0 0 0 2px rgba(108,99,255,0.15);
  outline: none;
}

.cf7-btn {
  text-align: center;
}

.cf7-btn input[type="submit"] {
  background: linear-gradient(135deg, #6c63ff, #4a47ff);
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.cf7-btn input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(108,99,255,0.35);
}

.cf7-field textarea {
    line-height: 10px;
}