.elementor-264 .elementor-element.elementor-element-40a57bb{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-264 .elementor-element.elementor-element-960a0f5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(max-width:767px){.elementor-264 .elementor-element.elementor-element-40a57bb{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-264 .elementor-element.elementor-element-960a0f5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-960a0f5 */* {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            background: #f5f5f5;
        }

        .form-container {
            background: white;
            max-width: 650px;
            margin: auto;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .step-nav {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .step-nav div {
            flex: 1;
            text-align: center;
            padding-bottom: 8px;
            border-bottom: 2px solid #ccc;
            color: #999;
            font-weight: 500;
        }

        .step-nav .active {
            border-color: black;
            color: black;
        }

        h2 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        p {
            font-size: 14px;
            margin: 4px 0 12px;
            color: #666;
        }

        .option-group {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .option-group button {
            flex: 1;
            min-width: 120px;
            padding: 12px;
            border: 1px solid #ccc;
            background: #fff;
            cursor: pointer;
            border-radius: 6px;
        }

        .option-group button.active {
            border-color: black;
            font-weight: bold;
            background: #f0f0f0;
        }

        .input-group {
            margin-bottom: 20px;
        }

        input[type="text"],
        input[type="number"],
        input[type="email"],
        input[type="tel"],
        select {
            min-width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 14px;
        }

        .inline-input {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .inline-input input {
            flex: 1;
            min-width: 100%;
        }

        .hidden {
            display: none;
        }
        
        .clearfix.clearfix-btn{
         display: flex;
         justify-content: flex-end;
        }
        

        .button {
            background: black;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            margin-left: 10px;
        }

        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }

        @media (max-width: 768px) {
            .option-group {
                flex-direction: column;
            }

            .option-group button {
                width: 100%;
            }

            .inline-input {
                flex-direction: column;
                align-items: stretch;
            }

            .inline-input input,
            .inline-input span {
                width: 100%;
                text-align: left;
            }

            .button {
                width: 100%;
                float: none;
                margin-top: 10px;
            }

            .step-nav {
                flex-direction: column;
            }

            .step-nav div {
                border-bottom: 2px solid #ccc;
                padding: 10px 0;
            }
        }
        
        .success-message {
  text-align: center;
  padding: 40px;
  background: #f0f9f0;
  border: 1px solid #d1e7dd;
  border-radius: 12px;
}
.success-message h2 {
  color: #198754;
  margin-bottom: 10px;
}
/* Error message styling */
.error-message {
  color: red;          /* Red color */
  font-size: 13px;
  margin-top: 4px;
  display: block;
}

/* Highlight invalid inputs */
input.error, select.error {
  border: 1px solid red !important;
  background-color: #fff5f5;
}

/* For button groups (like Yes/No, employment, etc.) */
.option-group.error {
  border: 1px solid red;
  border-radius: 6px;
  padding: 6px;
  background: #fff5f5;
}/* End custom CSS */