/*!
 * Forms - CSS
 * Migrated 2026-05-21 from WPCode snippet #731.
 * Enqueue condition: is_singular('form-page') OR pages with forms
 */

#brx-header {

	background:initial;

}



#custom-post-type-title.brxe-post-title {

  text-align: center;

  font-size: 32px;

  font-weight: 700;

margin-top:150px;

	margin-bottom: 32px;

  color: #111;

  font-family: 'Inter', sans-serif;

	background-color:white;

}



@media (max-width: 600px) {

  #custom-post-type-title.brxe-post-title {

    font-size: 26px;

    margin-bottom: 24px;

		margin-top:150px;

  }

}



/* === FORM CONTAINER === */

.brxe-form {

  max-width: 1200px;

  margin: 80px auto;

  padding: 32px;

  background-color: #fefefe;

  border-radius: 12px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);

  font-family: 'Inter', sans-serif;

}



/* === FORM GROUPS === */

.brxe-form .form-group {

  margin-bottom: 20px;

  display: flex;

  flex-direction: column;

}



/* === LABELS === */

.brxe-form label {

  font-weight: 600;

  font-size: 15px;

  color: #333;

  margin-bottom: 6px;

}



/* === INPUTS, TEXTAREAS, SELECTS === */

.brxe-form input,

.brxe-form select,

.brxe-form textarea {

  padding: 12px 14px;

  font-size: 15px;

  color: #111;

  border: 1px solid #ccc;

  border-radius: 6px;

  background-color: #fff;

  transition: all 0.2s ease;

}



.brxe-form input:focus,

.brxe-form select:focus,

.brxe-form textarea:focus {

  border-color: #111;

  outline: none;

  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.15);

}



/* === PLACEHOLDERS === */

.brxe-form input::placeholder,

.brxe-form textarea::placeholder {

  color: #aaa;

}



/* === SELECT FIELDS === */

.brxe-form select {

  appearance: none;

  background-repeat: no-repeat;

  background-position: right 14px center;

  background-size: 14px;

}



/* === TEXTAREAS === */

.brxe-form textarea {

  min-height: 100px;

  resize: vertical;

}



/* === SUBMIT BUTTON === */

.brxe-form button[type="submit"] {

  background-color: #000;

  color: #fff;

  font-weight: 600;

  font-size: 16px;

  padding: 14px 28px;

  border-radius: 8px;

  border: none;

  width: 100%;

  cursor: pointer;

  transition: background-color 0.2s ease;

}



.brxe-form button[type="submit"]:hover {

  background-color: #111;

}



/* === LOADING SPINNER (OPTIONAL) === */

.brxe-form button .loading {

  margin-left: 10px;

  height: 18px;

  width: 18px;

  opacity: 0.7;

  display: inline-flex;

}



.brxe-form button .loading svg {

  animation: spin 1s linear infinite;

  height: 100%;

  width: 100%;

}



@keyframes spin {

  0% { transform: rotate(0deg); }

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

}



/* === RESPONSIVE === */

@media (max-width: 600px) {

  .brxe-form {

    padding: 24px;

    margin: 40px 16px;

  }

}
