/* ═══════════════════════════════════════════════════════════════════════════════
   REGISTER UNIFIED CSS - Consolidated registration styles for all pages and popups

   This file consolidates:
   - register-page-steps.css (layout container structure)
   - register-page-step1.css (step 1 specific)
   - register-popup-step1.css (popup modal optimized - ACTIVE VERSION)
   - register-page-step2.css (step 2 specific)
   - register-page-step3.css (step 3 specific)

   Structure:
   1. RESET / ICHECK HIDES
   2. LAYOUT CONTAINER (page full)
   3. POPUP OVERLAY & MODAL
   4. STEP 1 — Botones sociales y choices
   5. STEP 1 — Formulario email/password
   6. STEP 1 — Info, checkboxes, términos
   7. STEP 2 — Datos personales
   8. STEP 3 — Dirección y ubicación
   9. RESPONSIVE (todos los breakpoints)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── 1. RESET / ICHECK ──────────────────────────────── */

.iradio_minimal,
.icheckbox_minimal,
.iCheck-helper {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -99999px !important;
}

/* ─── 2. LAYOUT CONTENEDOR (página completa) ─────────── */

#searched-for {
    display: none !important;
}

.container-register {
    width: 100%;
    margin: 0 auto;
    background: white;
    min-height: auto;
    display: flex;
    justify-content: center;
    padding: 40px 24px;
    box-sizing: border-box;
}

    .container-register.home-content-container.short {
        padding: 40px 24px;
    }

.module.register-page {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.main-container-register {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    gap: 40px;
    min-height: auto !important;
}

    .main-container-register.teco-register-page-layout-single {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .main-container-register.teco-register-page-layout-double {
        min-height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
    }

.form-container {
    max-width: 617px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

    .form-container.initializing {
        max-width: 617px;
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

.teco-register-page-layout-single .form-container {
    max-width: 680px;
    width: 100%;
    padding: 40px;
    height: auto;
    border-radius: 8px;
}

.teco-register-page-layout-double .form-container {
    flex: 0 0 auto;
    max-width: 694px;
    width: 694px;
    height: auto;
    border-radius: 8px;
}

.image-container {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 400px;
}

.teco-register-page-layout-single .image-container {
    display: none !important;
}

.teco-register-page-layout-double .image-container {
    display: flex !important;
}

.image-container.step2-image .step-image {
    max-width: 100% !important;
}

.image-container.step3-image .step-image {
    max-width: 100% !important;
}

.step-image {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    vertical-align: middle;
}

input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.teco-register-page-input-group input:-webkit-autofill,
.teco-register-page-input-group input:-webkit-autofill:hover,
.teco-register-page-input-group input:-webkit-autofill:focus,
.teco-register-page-input-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #1f2937 !important;
    caret-color: #1f2937 !important;
}

.teco-register-page-input-group select:-webkit-autofill,
.teco-register-page-input-group select:-webkit-autofill:hover,
.teco-register-page-input-group select:-webkit-autofill:focus,
.teco-register-page-input-group select:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #1f2937 !important;
}

#teco-register-page-nationality-country,
#teco-register-page-birth-day,
#teco-register-page-birth-month,
#teco-register-page-birth-year,
#teco-register-page-nationality,
#teco-register-page-location,
#teco-register-page-municipality {
    background-color: #fff !important;
    color: #1f2937 !important;
    padding: 12px 14px 12px 50px;
    font-size: 1rem;
}

    #teco-register-page-nationality-country:-webkit-autofill,
    #teco-register-page-birth-month:-webkit-autofill,
    #teco-register-page-birth-year:-webkit-autofill,
    #teco-register-page-nationality:-webkit-autofill,
    #teco-register-page-location:-webkit-autofill,
    #teco-register-page-municipality:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
        -webkit-text-fill-color: #1f2937 !important;
    }

.teco-register-page-step-section {
    display: none;
    position: relative;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    margin: 0 auto;
    padding: 40px;
    max-width: 694px;
}

    .teco-register-page-step-section.active {
        display: flex;
    }

/* ─── 3. POPUP OVERLAY Y MODAL ──────────────────────── */

body.teco-register-popup-open {
    overflow: hidden !important;
}

.teco-register-popup-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    min-width: 100vw;
    height: 100%;
    min-height: 100vh;
    background: rgba(32, 38, 50, 0.6);
    z-index: 200000;
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 4vh 16px;
    box-sizing: border-box;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.teco-register-popup-modal {
    position: relative;
    font-family: "Poppins", Arial, sans-serif !important;
    border-radius: 16px;
    background: #f0f5ff;
    padding: 50px 50px 50px 50px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.13);
    max-width: 694px;
    width: 100%;
    box-sizing: border-box;
}

.teco-register-popup-title {
    text-align: center;
    font-size: 2.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 3rem;
    margin-top: 0px;
    margin-bottom: 30px;
    color: #1a1a2e;
    word-spacing: 0.1em;
    text-transform: none;
}

.teco-register-popup-error-section {
    padding: 0 10%;
    margin-bottom: 12px;
}

#teco-register-popup-general-error {
    color: #E4514A;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.2rem;
    text-align: center;
    border-radius: 6px;
    padding: 10px 12px;
    margin: 0;
    display: none;
}

    #teco-register-popup-general-error.show {
        display: block !important;
    }

.teco-register-popup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.teco-register-popup-password-tip {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1rem;
    margin-bottom: 0px;
    margin-top: -8px;
    color: #3C1F94;
    text-transform: none;
}

.teco-register-popup-error-message {
    color: #E4514A;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2rem;
    display: none;
    margin-bottom: 0px;
    margin-top: 0px;
    text-transform: none;
    text-align: start;
}

    .teco-register-popup-error-message.show {
        display: block !important;
    }

#teco-register-popup-password-error {
    display: none;
    text-align: start;
}

.teco-register-popup-btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.teco-register-popup-modal input:-webkit-autofill,
.teco-register-popup-modal input:-webkit-autofill:hover,
.teco-register-popup-modal input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #1f2937 !important;
    transition: background-color 5000s ease-in-out 0s !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px;
    padding: 12px 14px 12px 45px !important;
    height: 52px !important;
}

input:focus {
    outline: none;
}

.teco-register-popup-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

    .teco-register-popup-checkbox-group .teco-register-popup-checkbox-input {
        display: none !important;
    }

    .teco-register-popup-checkbox-group .teco-register-popup-checkbox-label {
        color: #1f2937;
        font-size: 0.95rem;
        font-weight: 400;
        cursor: pointer;
        user-select: none;
        line-height: 1.4rem;
        margin: 0;
        position: relative;
        padding-left: 28px;
        text-transform: none;
        text-align: start;
    }

        .teco-register-popup-checkbox-group .teco-register-popup-checkbox-label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 4px;
            border: 1px solid #495368;
            background: #fff;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            text-align: start;
        }

    .teco-register-popup-checkbox-group .teco-register-popup-checkbox-input:checked + .teco-register-popup-checkbox-label::before {
        background: #1F242E;
        border: 1px solid #1F242E;
        text-align: start;
    }

    .teco-register-popup-checkbox-group .teco-register-popup-checkbox-input:checked + .teco-register-popup-checkbox-label::after {
        content: '';
        position: absolute;
        left: 6px;
        top: 5px;
        width: 9px;
        height: 7px;
        border-left: 2px solid #61E437;
        border-bottom: 2px solid #61E437;
        transform: rotate(-45deg);
    }

.teco-register-popup-btn-continue {
    background: #1a1a2e !important;
    color: #61e437 !important;
    border: none !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 14px 48px !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    transition: all 0.2s ease !important;
    display: block !important;
    margin: 0 auto !important;
    position: static !important;
    height: auto !important;
    bottom: auto !important;
    right: auto !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    flex-shrink: 0 !important;
    line-height: 1.5rem !important;
    letter-spacing: 0 !important;
}

    .teco-register-popup-btn-continue:hover {
        background: #262c45 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
        color: #61e437 !important;
    }

.teco-register-popup-input-group {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 0px;
    position: relative;
    flex: 1;
}

    .teco-register-popup-input-group input {
        flex: 1;
        padding: 12px 14px 12px 45px !important;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        font-size: 0.95rem;
        font-weight: 400;
        line-height: 1.5rem;
        color: #1f2937;
        background: #fff;
        text-transform: none;
        width: 100%;
        height: 52px !important;
        box-sizing: border-box !important;
    }

        .teco-register-popup-input-group input::placeholder {
            color: #9ca3af;
            text-transform: none;
        }

        .teco-register-popup-input-group input:focus {
            outline: none;
        }

    .teco-register-popup-input-group.teco-register-popup-input-error input {
        border: 1px solid #E4514A !important;
        background: #F6D0D6 !important;
        color: #1F242E !important;
    }

        .teco-register-popup-input-group.teco-register-popup-input-error input:focus {
            outline: none !important;
            border-color: #E4514A !important;
            box-shadow: 0 0 0 3px rgba(228, 81, 74, 0.1) !important;
        }

.teco-register-popup-input-icon {
    position: absolute;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    flex-shrink: 0;
    z-index: 10;
    pointer-events: auto !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.teco-register-popup-email-icon,
.teco-register-popup-password-icon {
    position: absolute;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    z-index: 10;
}

.teco-register-popup-eye-open-icon,
.teco-register-popup-eye-closed-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.teco-register-popup-info-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.teco-register-popup-info-description {
    color: var(--color-secondary-800);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
    margin-bottom: 10px;
    text-transform: capitalize !important;
}

.teco-register-popup-terms-section {
    margin-top: 5px;
    text-align: start;
}

.teco-register-popup-terms-text {
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 400;
    word-wrap: break-word;
    line-height: 1.5rem;
    text-transform: none;
    text-align: start;
}

.teco-register-popup-terms-bold {
    font-weight: 600;
    color: #1a1a2e;
}

.teco-register-popup-terms-link {
    color: #376fd5;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

/* ─── 4. STEP 1 — Botones sociales y choices ────────── */

#teco-register-page-step1 {
    background: #f0f5ff;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.13);
    margin: 20px auto;
    border-radius: 16px;
    min-height: auto;
    padding: 40px;
    width: 100%;
    max-width: 694px;
}

.teco-register-page-title {
    text-align: center;
    font-size: 2.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 3rem;
    margin-top: 0px;
    margin-bottom: 30px;
    color: #1a1a2e;
    word-spacing: 0.1em;
    text-transform: none;
}

.highlight-green {
    color: var(--Primary-600, #379D15);
    display: inline !important;
    text-decoration: underline;
    font-family: Poppins;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    white-space: nowrap;
}

#teco-register-step1-choices {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.teco-register-page-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 56px;
    background-color: #ffffff;
    color: #1f2937;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
    padding: 0 20px;
}

    .teco-register-page-social-btn:hover {
        background-color: #f9fafb;
        border-color: #9ca3af;
        color: #1f2937;
        text-decoration: none;
    }

    .teco-register-page-social-btn img {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

.teco-register-page-or-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0;
}

.teco-register-page-or-line {
    flex: 1;
    height: 1px;
    background-color: #d1d5db;
}

.teco-register-page-or-text {
    color: #6b7280;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

/* ─── 5. STEP 1 — Formulario email/password ─────────── */

.teco-register-page-error-section {
    padding: 0;
    margin-bottom: 12px;
}

#teco-register-page-general-error {
    color: #E4514A;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.2rem;
    text-align: center;
    border-radius: 6px;
    padding: 10px 12px;
    margin: 0;
    display: none;
}

    #teco-register-page-general-error.show {
        display: block !important;
    }

#teco-register-page-email-error {
    color: #E4514A;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.2rem;
    border-radius: 6px;
    padding-bottom: 10px;
    margin: 0;
    display: none;
}

    #teco-register-page-email-error.show {
        display: block !important;
    }

.teco-register-page-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    margin-bottom: 16px;
    transition: border-color 0.2s ease;
}

    .teco-register-page-input-group input,
    .teco-register-page-input-group select {
        width: 100%;
        height: 52px;
        border: none;
        background: transparent;
        font-size: 0.95rem;
        padding: 12px 14px 12px 45px !important;
        color: #1f2937;
        outline: none;
        box-sizing: border-box;
        border-radius: inherit;
        background-clip: padding-box;
        font-weight: 400;
        line-height: 1.5rem;
        text-transform: none;
    }

        .teco-register-page-input-group input::placeholder {
            color: #9ca3af;
            font-weight: 400;
            text-transform: none;
        }

    .teco-register-page-input-group.input-error {
        border-color: #E4514A !important;
        border-radius: 10px;
    }

        .teco-register-page-input-group.input-error input,
        .teco-register-page-input-group.input-error select {
            color: #1F242E !important;
            border-radius: 10px;
            box-shadow: 0 0 0 3px rgba(228, 81, 74, 0.1) !important;
        }

            .teco-register-page-input-group.input-error input::placeholder {
                color: #9ca3af;
            }

            .teco-register-page-input-group.input-error input:focus,
            .teco-register-page-input-group.input-error select:focus {
                outline: none !important;
                border-color: #E4514A !important;
            }

.teco-register-page-error-message {
    color: #E4514A;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2rem;
    display: none;
    margin-bottom: 12px;
    margin-top: 0px;
    text-transform: none;
    text-align: start;
}

    .teco-register-page-error-message.show {
        display: block !important;
    }

input.input-error {
    color: #1F242E !important;
}

.teco-register-page-input-group .email-icon,
.teco-register-page-input-group .password-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    z-index: 1;
    pointer-events: none;
}

.teco-register-page-input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    z-index: 2;
    pointer-events: auto !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
    box-shadow: none !important;
}

    .teco-register-page-input-icon:hover {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 4px;
    }

.eye-open-icon,
.eye-closed-icon {
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
}

.eye-open-icon {
    display: none;
}

.eye-closed-icon {
    display: inline-flex;
}

.teco-register-page-password-tip {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1rem;
    margin-bottom: 0px;
    margin-top: -8px;
    color: #3C1F94;
    text-transform: none;
}

#teco-register-page-password-error {
    display: none;
    text-align: start;
}

/* ─── 6. STEP 1 — Info, checkboxes, términos ────────── */

.teco-register-page-info-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.teco-register-page-info-description {
    color: var(--color-secondary-800);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
    text-transform: initial;
    margin-bottom: 10px;
    text-align: start;
}

.teco-register-page-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

    .teco-register-page-checkbox-group .teco-register-page-checkbox-input:not(.no-icheck) {
        display: none !important;
    }

    .teco-register-page-checkbox-group .teco-register-page-checkbox-label {
        color: #1f2937;
        font-size: 0.95rem;
        font-weight: 400;
        cursor: pointer;
        user-select: none;
        line-height: 1.4rem;
        margin: 0;
        position: relative;
        padding-left: 28px;
        text-transform: none;
        text-align: start;
    }

        .teco-register-page-checkbox-group .teco-register-page-checkbox-label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 4px;
            border: 1px solid #495368;
            background: #fff;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            text-align: start;
        }

    .teco-register-page-checkbox-group .teco-register-page-checkbox-input:checked + .teco-register-page-checkbox-label::before {
        background: #1F242E;
        border: 1px solid #1F242E;
        text-align: start;
    }

    .teco-register-page-checkbox-group .teco-register-page-checkbox-input:checked + .teco-register-page-checkbox-label::after {
        content: '';
        position: absolute;
        left: 6px;
        top: 5px;
        width: 9px;
        height: 7px;
        border-left: 2px solid #61E437;
        border-bottom: 2px solid #61E437;
        transform: rotate(-45deg);
    }

.teco-register-page-terms-section {
    margin-top: 5px;
    text-align: start;
}

.teco-register-page-terms-text {
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 400;
    word-wrap: break-word;
    line-height: 1.5rem;
    text-transform: none;
    text-align: start;
}

.teco-register-page-terms-bold {
    font-weight: 600;
    color: #1a1a2e;
}

.teco-register-page-terms-link {
    color: #376fd5;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.teco-register-page-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    letter-spacing: 0;
    text-transform: uppercase;
    background: #1F242E;
    color: #61E437;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: none;
    display: inline-flex;
    min-width: 140px;
    height: 52px;
    padding: 16px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
}

    .btn-primary:hover {
        background: #2A2F3A;
        color: #6FE83F;
    }

    .btn-primary.btn-sm {
        min-width: 140px;
    }

    .btn-primary.btn-md {
        max-width: 160px;
    }

    .btn-primary.btn-lg {
        max-width: 220px;
    }

.teco-register-page-back-link-step1 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1f2937;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 20px;
    cursor: pointer;
}

    .teco-register-page-back-link-step1:hover {
        color: var(--Primary-600, #379D15);
        text-decoration: none;
    }

/* Hide actual checkboxes */
#ServiceEmails,
#MarketingEmails {
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
    opacity: 0 !important;
}

/* Style the labels */
.teco-register-page-checkbox-group label[for="ServiceEmails"],
.teco-register-page-checkbox-group label[for="MarketingEmails"] {
    color: #1f2937;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    user-select: none;
    line-height: 1.4rem;
    margin: 0;
    position: relative;
    padding-left: 28px;
    display: block;
    transition: all 0.2s ease;
}

    /* Custom checkbox box */
    .teco-register-page-checkbox-group label[for="ServiceEmails"]::before,
    .teco-register-page-checkbox-group label[for="MarketingEmails"]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 20px;
        height: 20px;
        border-radius: 4px;
        border: 1px solid #495368;
        background: #fff;
        cursor: pointer;
        transition: all 0.2s ease;
        pointer-events: none;
    }

    /* Custom checkmark - empty by default */
    .teco-register-page-checkbox-group label[for="ServiceEmails"]::after,
    .teco-register-page-checkbox-group label[for="MarketingEmails"]::after {
        content: '';
        position: absolute;
        left: 6px;
        top: 5px;
        width: 9px;
        height: 7px;
        border-left: 2px solid transparent;
        border-bottom: 2px solid transparent;
        transform: rotate(-45deg);
        pointer-events: none;
        transition: all 0.2s ease;
    }

    .teco-register-page-checkbox-group label[for="ServiceEmails"].checked::before,
    .teco-register-page-checkbox-group label[for="MarketingEmails"].checked::before {
        background: #1F242E;
        border: 1px solid #1F242E;
    }

    .teco-register-page-checkbox-group label[for="ServiceEmails"].checked::after,
    .teco-register-page-checkbox-group label[for="MarketingEmails"].checked::after {
        border-left: 2px solid #61E437;
        border-bottom: 2px solid #61E437;
    }

.teco-register-page-checkbox-group .icheckbox_minimal,
.teco-register-page-checkbox-group .iCheck-helper {
    display: none !important;
}

/* ─── 7. STEP 2 — Datos personales ──────────────────── */

#teco-register-page-step2 {
    background: #f0f5ff;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.13);
    margin: 20px auto;
    border-radius: 16px;
    min-height: 400px;
    padding: 40px;
    width: 100%;
    max-width: 694px;
}

.teco-register-page-step2-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.5rem;
    color: var(--color-primary-main);
    margin: 0;
}

.teco-register-page-step2-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
    color: var(--color-secondary-800);
    margin: 0;
}

.teco-register-page-step2-helper {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5rem;
    color: var(--color-secondary-800);
    margin: 2px 0 5px 0;
}

.teco-register-page-back-link {
    color: var(--Primary-550, #3EB318);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 8px 0;
    margin-bottom: 20px;
    display: inline-block;
}

    .teco-register-page-back-link:hover {
        color: var(--Primary-550, #3EB318);
        text-decoration: underline;
    }

.teco-register-page-form-label {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    color: var(--color-secondary-800);
    margin-bottom: 8px;
    display: block;
}

.teco-register-page-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.teco-register-page-birth-row {
    display: flex;
    gap: 8px;
    width: 100%;
}

    .teco-register-page-birth-row .teco-register-page-input-group {
        flex: 1;
    }

.teco-register-page-input-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%235F6B85' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    touch-action: manipulation;
}

/* Ocultar icono dropdown en filas de formulario y nacimiento */
.teco-register-page-form-row .teco-register-page-input-group select,
.teco-register-page-birth-row .teco-register-page-input-group select {
    background-image: none;
    padding-right: 12px;
}

.user-icon,
.email-icon,
.password-icon,
.flag-icon,
.cellphone-icon,
.house-icon,
.teco-register-page-input-icon-date {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    z-index: 1;
}

.teco-register-page-input-icon-date {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-secondary-400);
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0 4px;
}

.teco-register-page-radio-btn-row {
    display: flex;
    gap: 8px;
    min-height: 52px;
}

.teco-register-page-radio-btn {
    height: 52px;
    border-radius: 10px;
    border: 1.5px solid #dbe2f2;
    background: var(--color-neutral-0);
    color: var(--color-secondary-500);
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    cursor: pointer;
    transition: border 0.2s, color 0.2s, background 0.2s;
    user-select: none;
    align-content: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

    .teco-register-page-radio-btn.selected,
    input[type="radio"]:checked + .teco-register-page-radio-btn {
        border-color: var(--color-primary-main);
        background: var(--color-neutral-0);
        color: var(--color-primary-main);
    }

.teco-register-page-country-select {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 1;
}

    .teco-register-page-country-select select {
        width: 100%;
        height: 100%;
        border: none;
        background: transparent;
        padding: 0 8px;
        font-size: 0.9rem;
    }

.teco-register-page-validation-message {
    font-size: 0.75rem;
    color: var(--color-error-600);
    margin-top: -12px;
    margin-bottom: 16px;
    display: block;
}

.error-message {
    font-size: 0.875rem;
    color: var(--color-error-600);
    background: var(--color-error-50);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.teco-register-page-invalid-date-custom-message {
    font-size: 0.75rem;
    color: var(--color-error-600);
    margin-top: 4px;
}

.teco-register-page-btn-step2-container {
    display: flex;
    justify-content: end;
    width: 100%;
    margin-top: 30px;
}

/* ─── 8. STEP 3 — Dirección y ubicación ─────────────── */

#teco-register-page-step3 {
    background: #f0f5ff;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.13);
    margin: 20px auto;
    border-radius: 16px;
    min-height: 400px;
    padding: 40px;
    width: 100%;
    max-width: 694px;
}

.teco-register-page-step3-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.5rem;
    color: var(--color-primary-main);
    margin: 0;
}

.teco-register-page-step3-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
    color: var(--color-secondary-800);
    margin: 0;
}

.teco-register-page-step3-helper {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5rem;
    color: var(--color-secondary-800);
    margin: 2px 0 5px 0;
}

.teco-register-page-hidden-field {
    display: none !important;
}

.teco-register-page-btn-step3-container {
    display: flex;
    justify-content: end;
    width: 100%;
    margin-top: 30px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   9. RESPONSIVE — Todos los breakpoints
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1170px) {
    .main-container-register.teco-register-page-layout-double {
        flex-direction: column;
        padding: 12px 5px;
        gap: 24px;
        align-items: center;
        justify-content: center;
    }

    .teco-register-page-layout-double .form-container {
        flex: unset;
        width: 100%;
        max-width: 694px;
        margin: 0 auto;
    }

    .teco-register-page-layout-double .image-container {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .teco-register-page-step-section {
        padding: 24px 20px;
    }

    .teco-register-page-step2-title {
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 2.2rem;
    }

    .teco-register-page-step3-title {
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 2.2rem;
    }
}

@media (max-width: 768px) {
    .highlight-green {
        font-size: 1.5rem !important;
        line-height: 2.4rem !important;
        white-space: normal !important;
    }

    .teco-register-popup-title {
        font-size: 2rem;
    }

    .teco-register-popup-modal input:-webkit-autofill,
    .teco-register-popup-modal input:-webkit-autofill:hover,
    .teco-register-popup-modal input:-webkit-autofill:focus {
        height: 48px !important;
    }
}

@media (max-width: 767px) {
    .highlight-green {
        font-size: 1.5rem !important;
        line-height: 1.9rem !important;
        white-space: normal !important;
    }
}

@media (max-width: 600px) {
    .container-register,
    .container-register.home-content-container.short {
        padding: 20px 12px;
    }

    .teco-register-page-step-section {
        padding: 16px 12px;
        max-width: 100%;
        border-radius: 12px;
    }

    /* POPUP */
    .teco-register-popup-modal {
        padding: 20px 16px;
        max-width: 100%;
        width: calc(100% - 32px);
        border-radius: 12px;
    }

    .teco-register-popup-overlay {
        align-items: flex-start;
        padding: 4vw 12px 16px;
    }

    .teco-register-popup-title {
        font-size: 1.3rem;
        font-weight: 600;
        line-height: 1.65rem;
        margin-bottom: 12px;
        padding: 0;
    }

    .highlight-green {
        font-size: 1.35rem !important;
        line-height: 1.7rem !important;
        white-space: normal !important;
    }

    .teco-register-popup-error-section {
        padding: 0;
    }

    #teco-register-popup-general-error {
        text-align: start;
        font-size: 0.75rem;
        padding: 6px 8px;
    }

    .teco-register-popup-password-tip {
        font-size: 0.7rem;
        font-weight: 400;
        line-height: 0.95rem;
        margin-bottom: 0;
        margin-top: -4px;
        color: #3C1F94;
        text-align: start;
    }

    .teco-register-popup-info-description {
        font-size: 0.8rem;
        line-height: 1.2rem;
        margin-bottom: 6px;
    }

    .teco-register-popup-btn-container {
        margin-top: 12px;
    }

    .teco-register-popup-btn-continue {
        width: 100% !important;
        font-size: 0.9rem !important;
        padding: 12px 20px !important;
        border-radius: 10px !important;
        margin: 0 !important;
        display: flex !important;
        min-width: unset !important;
        position: static !important;
        bottom: auto !important;
        right: auto !important;
        height: 44px !important;
    }

    .teco-register-popup-input-group input {
        height: 44px;
        font-size: 16px;
        padding: 0 40px 0 42px !important;
    }

    .teco-register-popup-input-group {
        margin-bottom: 10px;
    }

    .teco-register-popup-terms-text {
        font-size: 0.8rem;
        line-height: 1.2rem;
    }

    .teco-register-popup-checkbox-group .teco-register-popup-checkbox-label {
        font-size: 0.85rem;
        line-height: 1.3rem;
    }

    .teco-register-popup-form {
        gap: 12px;
    }

    .teco-register-popup-info-block {
        gap: 8px;
    }

    /* STEP 1 PAGE */
    #teco-register-page-step1 {
        padding: 16px 12px;
        margin: 0 auto;
    }

    .teco-register-page-title {
        font-size: 1.35rem;
        font-weight: 600;
        line-height: 1.7rem;
        padding: 0;
        margin-bottom: 8px;
    }

    .teco-register-page-error-section {
        padding: 0;
        margin-bottom: 6px;
    }

    #teco-register-page-general-error,
    #teco-register-page-email-error {
        font-size: 0.8rem;
        padding: 6px 8px;
    }

    .teco-register-page-password-tip {
        font-size: 0.7rem;
        font-weight: 400;
        line-height: 1rem;
        margin-bottom: 4px;
        margin-top: -2px;
    }

    .teco-register-page-info-description {
        font-size: 0.85rem;
        line-height: 1.3rem;
        margin-bottom: 8px;
    }

    .teco-register-page-checkbox-label {
        font-size: 0.85rem;
        line-height: 1.3rem;
    }

    .teco-register-page-terms-text {
        font-size: 0.8rem;
        line-height: 1.2rem;
    }

    .teco-register-page-input-group {
        margin-bottom: 10px;
        height: 44px;
    }

        .teco-register-page-input-group input,
        .teco-register-page-input-group select {
            height: 44px;
            padding: 0 40px 0 42px !important;
            font-size: 16px;
        }

        .teco-register-page-input-group .email-icon,
        .teco-register-page-input-group .password-icon {
            width: 18px;
            height: 18px;
            left: 10px;
        }

    .teco-register-page-btn-container {
        margin-top: 12px;
    }

    .btn-primary {
        width: 100%;
        height: 44px;
        font-size: 0.9rem;
        min-width: unset;
        padding: 12px !important;
    }

    #teco-register-step1-choices {
        gap: 10px;
    }

    .teco-register-page-social-btn {
        height: 48px;
        font-size: 0.85rem;
        gap: 10px;
        padding: 0 16px;
    }

    .teco-register-page-info-block {
        margin-top: 8px;
        gap: 8px;
    }

    .teco-register-page-checkbox-group {
        gap: 8px;
        margin-bottom: 6px;
    }

    /* STEP 2 */
    #teco-register-page-step2 {
        padding: 6px 12px 16px 12px;
        border-radius: 12px;
    }

    .teco-register-page-step2-title {
        font-size: 1.75rem;
        font-weight: 600;
        line-height: 2.1rem;
        margin-bottom: 10px;
    }

    .teco-register-page-step2-subtitle {
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 1.5rem;
        margin-bottom: 6px;
    }

    .teco-register-page-step2-helper {
        font-size: 0.95rem;
        font-weight: 600;
        line-height: 1.3rem;
    }

    .teco-register-page-form-label {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    #teco-register-page-step2 .teco-register-page-input-group {
        margin-bottom: 12px;
        height: 48px;
    }

        #teco-register-page-step2 .teco-register-page-input-group input,
        #teco-register-page-step2 .teco-register-page-input-group select {
            font-size: 1rem;
            padding: 12px 14px 12px 50px !important;
        }

    #teco-register-page-first-name,
    #teco-register-page-last-name,
    #teco-register-page-nationality-country {
        padding: 12px 14px 12px 50px !important;
    }

    .user-icon,
    .email-icon,
    .password-icon,
    .flag-icon,
    .cellphone-icon,
    .house-icon {
        width: 20px;
        height: 20px;
        left: 14px;
    }

/*    .teco-register-page-input-icon-date,
    .teco-register-page-input-icon-DD,
    .teco-register-page-input-icon-MM,
    .teco-register-page-input-icon-AA {
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }*/

    .teco-register-page-validation-message {
        font-size: 0.8rem;
    }

    .teco-register-page-radio-btn {
        font-size: 1rem;
        height: 48px;
    }

    #teco-register-page-step2 .btn-primary {
        height: 46px;
        font-size: 0.95rem;
    }

    /* STEP 3 */
    #teco-register-page-step3 {
        padding: 6px 12px 16px 12px;
        border-radius: 12px;
    }

    .teco-register-page-step3-title {
        font-size: 1.75rem;
        font-weight: 600;
        line-height: 2.1rem;
        margin-bottom: 10px;
    }

    .teco-register-page-step3-subtitle {
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 1.5rem;
        margin-bottom: 6px;
    }

    .teco-register-page-step3-helper {
        font-size: 0.95rem;
        font-weight: 600;
        line-height: 1.3rem;
    }

    #teco-register-page-step3 .teco-register-page-input-group {
        margin-bottom: 12px;
        height: 48px;
    }

        #teco-register-page-step3 .teco-register-page-input-group input,
        #teco-register-page-step3 .teco-register-page-input-group select {
            font-size: 1rem;
            padding: 12px 14px 12px 50px !important;
        }

    .teco-register-page-birth-row .teco-register-page-input-group input,
    .teco-register-page-birth-row .teco-register-page-input-group select {
        padding: 12px 14px 12px 25px !important;
        background-image: none !important;
        padding: 12px 14px 12px 14px !important;
    }

    #teco-register-page-nationality,
    #teco-register-page-location,
    #teco-register-page-municipality,
    #teco-register-page-residential-neighborhood,
    #teco-register-page-home-phone {
        padding: 12px 14px 12px 50px !important;
    }

    #teco-register-page-step3 .btn-primary {
        height: 46px;
        font-size: 0.95rem;
    }

    /* Ocultar iconos en birth-row */
    .teco-register-page-birth-row .teco-register-page-input-group select {
        background-image: none !important;
        padding: 12px 14px 12px 14px !important;
    }
}

@media (max-width: 480px) {
    /* No breakpoint specific styles for 480px in original files */
}

@media (max-width: 420px) {
    .container-register,
    .container-register.home-content-container.short {
        padding: 12px 8px;
    }

    .teco-register-page-step-section {
        padding: 12px 10px;
        border-radius: 10px;
    }

    /* POPUP */
    .teco-register-popup-modal {
        padding: 16px 14px;
        width: calc(100% - 28px);
        border-radius: 10px;
    }

    .teco-register-popup-overlay {
        padding: 3vw 10px 12px;
    }

    .teco-register-popup-title {
        font-size: 1.15rem;
        font-weight: 600;
        line-height: 1.5rem;
        margin-bottom: 8px;
    }

    .highlight-green {
        font-size: 1.15rem !important;
        line-height: 1.5rem !important;
    }

    #teco-register-popup-general-error {
        font-size: 0.7rem;
        padding: 5px 6px;
    }

    .teco-register-popup-password-tip {
        font-size: 0.65rem;
        line-height: 0.9rem;
        margin-top: -2px;
    }

    .teco-register-popup-info-description {
        font-size: 0.75rem;
        line-height: 1.1rem;
        margin-bottom: 4px;
    }

    .teco-register-popup-btn-container {
        margin-top: 8px;
    }

    .teco-register-popup-btn-continue {
        font-size: 0.85rem !important;
        padding: 10px 16px !important;
        height: 40px !important;
    }

    .teco-register-popup-input-group input {
        height: 40px;
        padding: 0 36px 0 38px !important;
    }

    .teco-register-popup-input-group {
        margin-bottom: 8px;
    }

    .teco-register-popup-form {
        gap: 10px;
    }

    .teco-register-popup-info-block {
        gap: 6px;
    }

    .teco-register-popup-checkbox-group .teco-register-popup-checkbox-label {
        font-size: 0.8rem;
        line-height: 1.2rem;
    }

    .teco-register-popup-terms-text {
        font-size: 0.7rem;
        line-height: 1rem;
    }

    .teco-register-popup-error-message {
        font-size: 0.75rem;
        line-height: 1.1rem;
    }

    /* STEP 1 PAGE */
    #teco-register-page-step1 {
        padding: 20px 20px;
    }

    .teco-register-page-title {
        font-size: 1.15rem;
        line-height: 1.5rem;
        margin-bottom: 6px;
    }

    .teco-register-page-password-tip {
        font-size: 0.65rem;
        line-height: 0.9rem;
        margin-bottom: 2px;
        margin-top: 0px;
    }

    .teco-register-page-info-block {
        margin-top: 6px;
        gap: 6px;
    }

    .teco-register-page-input-group input,
    .teco-register-page-input-group select {
        height: 40px;
        padding: 0 36px 0 38px !important;
        font-size: 16px;
    }

    .teco-register-page-input-group {
        height: 40px;
        margin-bottom: 8px;
    }

        .teco-register-page-input-group .email-icon,
        .teco-register-page-input-group .password-icon {
            width: 16px;
            height: 16px;
            left: 10px;
        }

    .btn-primary {
        height: 40px;
        font-size: 0.85rem;
        padding: 10px !important;
        border-radius: 10px;
    }

    .teco-register-page-social-btn {
        height: 44px;
        font-size: 0.8rem;
        gap: 8px;
        padding: 0 12px;
    }

    .teco-register-page-or-text {
        font-size: 0.85rem;
    }

    .teco-register-page-back-link-step1 {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .teco-register-page-checkbox-label {
        font-size: 0.8rem;
        line-height: 1.2rem;
        padding-left: 26px;
    }

    .teco-register-page-checkbox-group label[for="ServiceEmails"],
    .teco-register-page-checkbox-group label[for="MarketingEmails"] {
        font-size: 0.8rem;
        padding-left: 26px;
    }

    .teco-register-page-info-description {
        font-size: 0.8rem;
        line-height: 1.2rem;
    }

    .teco-register-page-terms-text {
        font-size: 0.75rem;
        line-height: 1.1rem;
    }

    .teco-register-page-btn-container {
        margin-top: 8px;
    }

    #teco-register-step1-choices {
        gap: 8px;
    }

    .teco-register-page-checkbox-group {
        gap: 6px;
        margin-bottom: 4px;
    }

    /* STEP 2 */
    #teco-register-page-step2 {
        padding: 4px 8px 14px 8px;
        border-radius: 10px;
    }

    .teco-register-page-step2-title {
        font-size: 1.5rem;
        line-height: 1.8rem;
        margin-bottom: 8px;
    }

    .teco-register-page-step2-subtitle {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    #teco-register-page-step2 .teco-register-page-form-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    #teco-register-page-step2 .teco-register-page-input-group {
        margin-bottom: 10px;
        height: 44px;
    }

        #teco-register-page-step2 .teco-register-page-input-group input,
        #teco-register-page-step2 .teco-register-page-input-group select {
            font-size: 0.95rem;
            padding: 7px 12px 7px 40px !important;
        }

        #teco-register-page-step3 .teco-register-page-input-group input,
        #teco-register-page-step3 .teco-register-page-input-group select {
            font-size: 0.95rem;
            padding: 7px 12px 7px 40px !important;
        }

 /*   .teco-register-page-input-icon-date,
    .teco-register-page-input-icon-DD,
    .teco-register-page-input-icon-MM,
    .teco-register-page-input-icon-AA {
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }*/

    #teco-register-page-birth-day,
    #teco-register-page-birth-month,
    #teco-register-page-birth-year {
        padding: 12px 14px 12px 14px !important;
        font-size: 0.9rem;
    }

    .user-icon,
    .email-icon,
    .password-icon,
    .flag-icon,
    .cellphone-icon,
    .house-icon {
        width: 18px;
        height: 18px;
        left: 10px;
    }

    .teco-register-page-radio-btn {
        font-size: 0.95rem;
        height: 44px;
    }

    #teco-register-page-step2 .btn-primary {
        height: 42px;
        font-size: 0.9rem;
    }

    .teco-register-page-btn-step2-container {
        margin-top: 14px;
    }

    /* STEP 3 */
    #teco-register-page-step3 {
        padding: 4px 8px 14px 8px;
        border-radius: 10px;
    }

    .teco-register-page-step3-title {
        font-size: 1.5rem;
        line-height: 1.8rem;
        margin-bottom: 8px;
    }

    .teco-register-page-step3-subtitle {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    #teco-register-page-step3 .teco-register-page-form-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    #teco-register-page-step3 .teco-register-page-input-group {
        margin-bottom: 10px;
        height: 44px;
    }

    .teco-register-page-birth-row .teco-register-page-input-group input,
    .teco-register-page-birth-row .teco-register-page-input-group select {
        padding: 12px 14px 12px 25px !important;
        background-image: none !important;
        padding: 12px 14px 12px 14px !important;
    }

    #teco-register-page-nationality,
    #teco-register-page-location,
    #teco-register-page-municipality,
    #teco-register-page-residential-neighborhood,
    #teco-register-page-home-phone {
        padding: 12px 14px 12px 55px !important;
    }

    .teco-register-page-radio-btn {
        font-size: 0.95rem;
        height: 44px;
    }

    #teco-register-page-step3 .btn-primary {
        height: 42px;
        font-size: 0.9rem;
    }

    .teco-register-page-btn-step2-container {
        margin-top: 14px;
    }
}

@media (max-height: 720px) {
    .teco-register-popup-overlay {
        align-items: flex-start;
    }
}
