/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Child theme for the Astra WordPress theme.
Author: ChatGPT
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* Add your custom CSS below this line */
.text-highlight {
  position: relative;
  z-index: 1;
  span {
    display: inline-block;
    left: -3px;
    position: absolute;
    z-index: -1;
    width: calc(100% + 6px);
    bottom: 8px;
    opacity: 0.3;
    height: 7px !important;
    background-color: #007bff;
  }
}

.text-center {
  text-align: center;
}
/* Input Fields */
.wpforms-form input,
.wpforms-form textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  background: #fafafa;
  transition: all 0.2s ease;
}

/* Focus Effect */
.wpforms-form input:focus,
.wpforms-form textarea:focus {
  border-color: #111827;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
  outline: none;
}

/* Labels */
.wpforms-form label {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 4px;
}

/* Button */
.wpforms-form button {
  background: linear-gradient(90deg, #007bff, #7a3cff) !important;
  border-radius: 30px !important;
  color: #fff;
  padding: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Button Hover */
.wpforms-form button:hover {
  background: linear-gradient(90deg, #007bff, #7a3cff) !important;
  transform: translateY(-2px);
}

/* Remove ugly spacing */
.wpforms-form .wpforms-field {
  margin-bottom: 0;
}

input.wpforms-field-medium,
.wp-core-ui div.wpforms-container select.wpforms-field-medium,
.wp-core-ui div.wpforms-container .wpforms-field-row.wpforms-field-medium {
  max-width: 100% !important;
}