 /* =========================================================
           GENERAL
        ========================================================= */

        html,
        body {
            margin: 0;
            padding: 0;
            min-height: 100%;
            font-family: "Inter", sans-serif;
            font-optical-sizing: auto;
            font-weight: 300;
            font-style: normal;
        }

        body {
            background: #ffffff;
        }

        img {
            max-width: 100%;
        }


        /* =========================================================
           HEADER / FOOTER
        ========================================================= */

        .deco-header,
        .deco-footer {
            width: 100%;
            display: block;
        }


        /* =========================================================
           MAIN
        ========================================================= */

        .main-container {
            min-height: 820px;
        }

        .main-left {
            background: #ffffff;

            display: flex;
            align-items: center;
            justify-content: center;

            text-align: center;
            padding: 60px 30px;
        }

        .left-content {
            width: 100%;
            max-width: 650px;
        }

        .logo {
            width: 400px;
            max-width: 85%;
            margin-bottom: 35px;
        }

        .text-image {
            width: 520px;
            max-width: 90%;
        }


        /* =========================================================
           COLUMNA DERECHA
        ========================================================= */

        .main-right {
            background: #4bb3b7;

            display: flex;
            align-items: center;
            justify-content: center;

            padding: 70px 40px;
        }


        /* =========================================================
           FORM CARD
        ========================================================= */

        .form-card {
            background: #ffffff;

            width: 100%;
            max-width: 540px;

            min-height: 640px;

            border-radius: 30px;

            padding: 55px 50px;

            box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.20);
        }


        /* =========================================================
           STEPS
        ========================================================= */

        .steps {
            margin-bottom: 40px;
        }

        .steps-header {
            display: flex;
            justify-content: space-between;
            align-items: center;

            margin-bottom: 12px;
        }

        .step-title {
            font-size: 18px;
            font-weight: 600;
            color: #4bb3b7;
            margin: 0;
        }

        .step-number {
            font-size: 14px;
            color: #777;
        }

        .step-line {
            width: 100%;
            height: 5px;

            background: #e8e8e8;

            border-radius: 10px;

            overflow: hidden;
        }

        .step-progress {
            width: 50%;
            height: 100%;

            background: #4bb3b7;

            border-radius: 10px;

            transition: width 0.4s ease;
        }

        .step-progress.step-2 {
            width: 100%;
        }


        /* =========================================================
           FORMULARIO
        ========================================================= */

        .form-label {
            color: #666;
            font-size: 17px;
            margin-bottom: 7px;
        }


        .form-control {
            border: 1px solid #aaa;
            border-radius: 10px;

            font-size: 16px;
        }

        input.form-control {
            height: 48px;
        }

        .form-control:focus {
            border-color: #4bb3b7;
            box-shadow: 0 0 0 0.15rem rgba(75, 179, 183, 0.20);
        }

        .form-text {
            font-size: 12px;
            color: #888;
            margin-top: 4px;
        }


        /* =========================================================
           CONTADOR DE NIÑOS
        ========================================================= */

        .children-counter {
            display: flex;
            align-items: center;

            width: 125px;

            border: 1px solid #aaa;
            border-radius: 8px;

            overflow: hidden;
        }

        .children-counter button {
            width: 42px;
            height: 42px;

            border: 0;
            background: #ffffff;

            font-size: 20px;
            color: #555;

            cursor: pointer;
        }

        .children-counter button:hover {
            background: #f1f1f1;
        }

        .children-counter input {
            width: 41px;
            height: 42px;

            border: 0;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;

            text-align: center;

            font-size: 16px;
        }

        .children-counter input:focus {
            outline: none;
        }


        /* =========================================================
           BOTONES
        ========================================================= */

        .btn-next,
        .btn-register {
            width: 100%;

            height: 50px;

            border: 0;
            border-radius: 10px;

            background: #4bb3b7;
            color: white;

            font-size: 17px;
            font-weight: 600;

            transition: all 0.2s ease;
        }

        .btn-next:hover,
        .btn-register:hover {
            background: #399ca0;
            color: #ffffff;
        }

        .btn-back {
            height: 50px;

            border: 1px solid #4bb3b7;
            border-radius: 10px;

            background: #ffffff;
            color: #4bb3b7;

            font-size: 16px;
            font-weight: 600;

            transition: all 0.2s ease;
        }

        .btn-back:hover {
            background: #4bb3b7;
            color: #ffffff;
        }


        /* =========================================================
           PASO 2
        ========================================================= */

        #step2 {
            display: none;
        }

        .children-container {
            max-height: 165px;
            overflow-y: auto;

            padding-right: 8px;
        }

        .child-card {
            border: 1px solid #ddd;
            border-radius: 12px;

            padding: 15px;

            margin-bottom: 15px;

            background: #fafafa;
        }

        .child-title {
            color: #4bb3b7;
            font-weight: 600;

            margin-bottom: 15px;
        }

        .child-card .form-label {
            font-size: 15px;
        }


        /* =========================================================
           RESPONSIVE
        ========================================================= */

        @media (max-width: 991px) {

            .main-container {
                min-height: auto;
            }

            .main-left {
                padding: 70px 20px;
            }

            .main-right {
                padding: 50px 20px;
            }

            .form-card {
                max-width: 600px;
            }
        }


        @media (max-width: 575px) {

            .main-left {
                padding: 50px 15px;
            }

            .main-right {
                padding: 30px 15px;
            }

            .form-card {
                padding: 35px 25px;
                border-radius: 20px;
            }

            .logo {
                margin-bottom: 25px;
            }

            .form-label {
                font-size: 16px;
            }

            .children-container {
                max-height: none;
                overflow-y: visible;
            }

        }