/* 
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
*/

/* Add your custom styles here */
/* Wrapper – full width */
.lpu-form-wrapper {
  width: 100%;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 6px;
  box-shadow: 0px 3px 15px rgba(0,0,0,0.1);
  font-family: 'Arial', sans-serif;
  box-sizing: border-box;
}

/* Tabs */
.lpu-form-tabs {
  display: flex;
  margin-bottom: 20px;
}

.lpu-tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #ddd;
}

.lpu-tab.active {
  background: #F68121;
  color: white;
  border-color: #F68121;
}

/* Labels */
.lpu-form-wrapper label {
  font-size: 14px;
  margin-top: 12px;
  display: block;
  color: #444;
}

/* Input + Select fields */
.lpu-form-wrapper input,
.lpu-form-wrapper select {
/*   width: 100%; */
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 5px;
  font-size: 14px;
  box-sizing: border-box;
}

/* Multi-field rows like email + OTP button */
.lpu-flex {
  display: flex;
  gap: 10px;
  width: 100%;
}

/* Old fields (optional, safe to keep) */
.lpu-country {
  width: 30%;
}

.lpu-mobile {
  width: 70%;
}

/* Checkbox */
.lpu-check {
  display: flex;
  font-size: 13px;
  margin-top: 15px;
  line-height: 1.4;
}

/* Submit button */
.lpu-submit input[type="submit"] {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background: #F68121;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s;
}

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

/* OTP Button Styling (only if you're using it) */
.lpu-otp-btn {
  background: #F68121 !important;
  color: white !important;
  border: none !important;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.wpcf7-form br {
    display: none;
}

/* 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: #F68121;
  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;
  }
}

