.elementor-751 .elementor-element.elementor-element-675913aa{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;}.elementor-751 .elementor-element.elementor-element-6d88b2ce{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--border-radius:22px 22px 22px 22px;box-shadow:0px 0px 8px 9px rgba(0, 0, 0, 0.03);--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:20px;--padding-bottom:20px;--padding-left:0px;--padding-right:0px;}.elementor-751 .elementor-element.elementor-element-6d88b2ce:not(.elementor-motion-effects-element-type-background), .elementor-751 .elementor-element.elementor-element-6d88b2ce > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-751 .elementor-element.elementor-element-32b8a041{text-align:center;}.elementor-751 .elementor-element.elementor-element-32b8a041 .elementor-heading-title{font-family:"Inter", Sans-serif;font-size:25px;font-weight:600;color:#3A7BFF;}body.elementor-page-751:not(.elementor-motion-effects-element-type-background), body.elementor-page-751 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #FFFFFF 0%, #8AADF4 100%);}@media(min-width:768px){.elementor-751 .elementor-element.elementor-element-675913aa{--content-width:500px;}}/* Start custom CSS */:root {
      --primary-color: #3A7BFF;
      --primary-dark: #2563D6;
      --primary-light: #EAF2FF;
      --white: #fff;
      --gray: #7A7A7A;
      --gray-light: #F5F7FA;
      --success: #379960;
      --error: #EA1313;
      --border-radius: 18px;
      --shadow: 0 4px 24px rgba(58,123,255,0.08);
      --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: var(--font-main);
      background: linear-gradient(135deg, #EAF2FF 0%, #BFD9FF 100%);
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 20px;
    }
    .form-container {
      background: var(--white);
      padding: 36px 28px 32px 28px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
      width: 100%;
      max-width: 440px;
      margin: auto;
    }
    .form-group { margin-bottom: 18px; }
    label {
      display: block;
      margin-bottom: 7px;
      font-weight: 500;
      color: var(--primary-color);
      font-size: 1rem;
      letter-spacing: 0.01em;
    }
    .form-control {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid #D6E6FF!important;
      border-radius: 10px!important;
      background: var(--gray-light);
      font-size: 1rem;
      outline: none;
      transition: border 0.2s;
    }
    .form-control:focus {
      border-color: var(--primary-color);
      background: #F0F6FF;
    }
    .form-row {
      display: flex;
      gap: 12px;
      margin-bottom: 18px;
    }
    .form-row .form-group {
      flex: 1 1 50%;
      margin-bottom: 0;
    }
    .btn-container {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }
    .btn {
      flex: 1;
      padding: 13px;
      background-color: var(--primary-color);
      color: var(--white);
      border: none;
      border-radius: 22px;
      font-size: 1.08rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      text-align: center;
      box-shadow: 0 2px 8px rgba(58,123,255,0.07);
    }
    .btn:active { transform: scale(0.98); }
    .btn:disabled {
      background: #A5C6FF;
      cursor: not-allowed;
    }
    .message {
      margin-top: 22px;
      padding: 14px 18px;
      border-radius: 12px;
      font-size: 1.08rem;
      text-align: center;
      font-weight: 500;
      display: none;
    }
    .message.success {
      background: #E8F8F0;
      color: var(--success);
      border: 1.5px solid #B6E2C6;
    }
    .message.error {
      background: #FFCACA;
      color: var(--error);
      border: 1.5px solid #FFD6B6;
      display: block;
    }
    .radio-group {
      margin-bottom: 18px;
    }
    .radio-group label.main-label {
      margin-bottom: 10px;
    }
    .radio-options {
      display: flex;
      gap: 24px;
    }
    .radio-option {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .radio-option label {
      margin-bottom: 0;
      cursor: pointer;
      color: var(--gray);
      font-weight: 500;
    }
    .radio-option input[type="radio"] {
      appearance: none;
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      border: 2px solid #D6E6FF;
      border-radius: 50%;
      outline: none;
      cursor: pointer;
      position: relative;
      transition: border-color 0.2s;
    }
    .radio-option input[type="radio"]:checked {
      border-color: var(--primary-color);
    }
    .radio-option input[type="radio"]:checked::after {
      content: '';
      position: absolute;
      width: 12px;
      height: 12px;
      background: var(--primary-color);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    @media (max-width: 600px) {
      .form-row .form-group {
        width: 100%;
      }
    }/* End custom CSS */