/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* NEW FORM */
.admission-form-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0px 3px 15px rgba(0,0,0,0.1);
  font-family: 'Arial', sans-serif;
}

/* Form Title */
.admission-form-wrapper .form-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c2e4a;
}

/* Two inputs in one row */
.two-field-row {
  display: flex;
  gap: 15px;
}

.two-field-row label {
  flex: 1;
}

/* Inputs */
.admission-form-wrapper input,
.admission-form-wrapper select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  margin-top: 6px;
  box-sizing: border-box;
}

/* Checkbox */
.consent-checkbox {
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.4;
}

/* Submit button */
.submit-row input[type="submit"] {
  width: 100%;
  background: #D71E26;
  color: #fff;
  padding: 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.2s ease;
}

.submit-row input[type="submit"]:hover {
  background: #b3872f;
}

label{
	display: block;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .two-field-row {
    flex-direction: column;
  }
}

.wpcf7-form br {
    display: none;
}