* { box-sizing: border-box; font-family: 'Dosis', sans-serif; }

        body {
            background-color: #f1d4eb;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            min-height: 100vh;
            margin: 0;
            padding: 30px 20px;
        }

        .card-container {
            background-color: #ffffff;
            width: 100%;
            max-width: 520px;
            padding: 32px 28px;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            text-align: center;
        }

        .logo-box { margin-bottom: 15px; }
        .logo-box img { max-width: 160px; height: auto; }

        h2 {
            color: #1e0052;
            font-size: 19px;
            font-weight: 800;
            margin: 0 0 8px 0;
            line-height: 1.3;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-subtitle {
            color: #580050;
            font-size: 13px;
            font-weight: 700;
            margin: 0 0 28px;
            opacity: 0.7;
        }

        /* ── Separadores de sección ── */
        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 28px 0 18px;
            text-align: left;
        }
        .section-title span {
            color: #1e0052;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            white-space: nowrap;
        }
        .section-title::before,
        .section-title::after {
            content: '';
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, #c50a76, #1e0052);
            border-radius: 2px;
        }
        .section-title::before { flex: 0 0 0px; }

        /* ── Campos ── */
        .form-group {
            text-align: left;
            margin-bottom: 16px;
        }

        label.field-label {
            display: block;
            color: #580050;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        label.field-label .req { color: #c50a76; margin-left: 2px; }

        input[type="text"],
        input[type="tel"],
        input[type="date"],
        input[type="number"],
        textarea,
        select {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #1e0052;
            border-radius: 8px;
            font-size: 15px;
            font-family: 'Dosis', sans-serif;
            color: #1e0052;
            font-weight: 500;
            outline: none;
            background-color: #ffffff;
            transition: background-color 0.2s;
        }

        input:focus, textarea:focus, select:focus {
            background-color: #faf6fc;
        }

        textarea {
            resize: vertical;
            min-height: 90px;
            line-height: 1.5;
        }

        /* Grid de dirección */
        .address-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .address-grid .col-full { grid-column: 1 / -1; }

        /* ── Radios y Checkboxes ── */
        .options-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 6px;
        }

        .options-group--row {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 12px;
        }

        .check-label,
        .radio-label {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 16px;
            font-weight: 700;
            color: #580050;
            position: relative;
            user-select: none;
            gap: 10px;
        }

        .check-label input,
        .radio-label input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

        /* Custom checkbox */
        .custom-check {
            width: 22px; height: 22px;
            background: #fff;
            border: 2px solid #1e0052;
            border-radius: 5px;
            flex-shrink: 0;
            position: relative;
            transition: background 0.15s;
        }
        .check-label input:checked ~ .custom-check {
            background-color: #c50a76;
            border-color: #1e0052;
        }
        .check-label input:checked ~ .custom-check::after {
            content: '';
            position: absolute;
            left: 4px; top: 1px;
            width: 10px; height: 6px;
            border-left: 2.5px solid #fff;
            border-bottom: 2.5px solid #fff;
            transform: rotate(-45deg);
        }

        /* Custom radio */
        .custom-radio {
            height: 22px; width: 22px;
            background-color: #fff;
            border: 2px solid #1e0052;
            border-radius: 50%;
            flex-shrink: 0;
            position: relative;
        }

        /* Estado marcado por defecto (sin modificador de color) */
        .radio-label input:checked ~ .custom-radio {
            background-color: #c50a76;
            border-color: #1e0052;
        }
        .radio-label input:checked ~ .custom-radio::after {
            content: '';
            position: absolute;
            left: 5px; top: 5px;
            width: 8px; height: 8px;
            border-radius: 50%;
            background: #fff;
        }

        .radio-label-manana input:checked ~ .custom-radio { background-color: #c50a76; border-color: #1e0052; }
        .radio-label-manana input:checked ~ .custom-radio::after { content:''; position:absolute; left:5px; top:5px; width:8px; height:8px; border-radius:50%; background:#fffeb3; }
        .radio-label-tarde input:checked ~ .custom-radio { background-color: #1a4da2; border-color: #1e0052; }
        .radio-label-tarde input:checked ~ .custom-radio::after { content:''; position:absolute; left:5px; top:5px; width:8px; height:8px; border-radius:50%; background:#ffeb00; }
        .radio-label-todo input:checked ~ .custom-radio { background-color: #ffeb00; border-color: #1e0052; }

        /* ── Bloque de info importante ── */
        .info-box {
            background: #faf0f8;
            border: 2px solid #c50a76;
            border-radius: 12px;
            padding: 16px 18px;
            text-align: left;
            margin-bottom: 8px;
        }
        .info-box ul {
            margin: 0;
            padding: 0 0 0 4px;
            list-style: none;
        }
        .info-box ul li {
            font-size: 13px;
            font-weight: 600;
            color: #1e0052;
            line-height: 1.5;
            padding: 4px 0;
            padding-left: 18px;
            position: relative;
        }
        .info-box ul li::before {
            content: '•';
            position: absolute;
            left: 4px;
            color: #c50a76;
            font-size: 16px;
            line-height: 1.2;
        }

        /* ── Botón ── */
        .btn-registrar {
            width: 100%;
            background-color: #ffeb00;
            color: #1e0052;
            border: 2px solid #1e0052;
            padding: 14px;
            font-size: 22px;
            font-weight: 800;
            text-transform: uppercase;
            border-radius: 10px;
            cursor: pointer;
            margin-top: 20px;
            letter-spacing: 1px;
            transition: background-color 0.2s;
        }
        .btn-registrar:hover { background-color: #f2df00; }
        .btn-registrar:active { transform: scale(0.99); }

        /* ── Mensaje éxito ── */
        #mensaje-exito {
            display: none;
            color: #1e0052;
            font-size: 20px;
            font-weight: 700;
            margin-top: 20px;
            text-align: center;
            line-height: 1.6;
        }