  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .error {
            color: red;
            font-weight: bold;
        }

        .parent {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(1, 1fr);
            gap: 8px;
        }

        .div1 {
            text-align: start;
            padding: 2px;
            color: rgb(0, 0, 0);
            font-size: 15px;
        }

        div.div2 {
            text-align: center;
            padding: 2px;
        }

        /* Contenedor del formulario */
        .form-container {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 500px;
            text-align: center;
            animation: fadeIn 1s ease-in-out;
            padding: 30px 25px;
            box-sizing: border-box;
        }

        /* Animación */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                transform: translateY(0);
            }
        }

        /* Logo */
        .logo {
            width: 200px;
            margin-bottom: 20px;
        }

        /* Título */
        .form-container h2 {
            margin-bottom: 20px;
            color: #333;
        }

        /* Inputs */
        .form-container input {
            width: 100%;
            padding: 12px 15px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 12px;
            outline: none;
            transition: border 0.3s;
            box-sizing: border-box;
            font-size: 1rem;
        }

        .form-container input:focus {
            border-color: #5c0f8b;
        }

        /* Contenedor del checkbox */
        .checkbox-container {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 100%;
            margin: 10px 0;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 12px;
            font-size: 0.95rem;
            box-sizing: border-box;
        }

        /* Estilo del checkbox */
        .checkbox-container input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-right: 10px;
            accent-color: #5c0f8b;
            cursor: pointer;
        }

        /* Botón */
        .form-container button {
            width: 100%;
            padding: 14px;
            margin-top: 15px;
            background: linear-gradient(#5c0f8b);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .form-container button:hover {
            transform: translateY(-2px);
            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
        }
        .form-container select {
            width: 100%;
            padding: 12px 15px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 12px;
            outline: none;
            transition: border 0.3s;
            box-sizing: border-box;
            font-size: 1rem;
        }

        .form-container select:focus {
            border-color: #5c0f8b;
        }


        body,
        html {
            height: 100%;
            font-family: Arial, sans-serif;
            background-color: #3baa35;
        }

        /* Fondo de ladrillos */
        .ladrillos {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        .ladrillos img {
            /* position: absolute;
            width: 80px; */
            position: absolute;
            max-width: 100px;
            width: 100px;
            height: auto;
            /* opacity: 0.2; */
        }


        /* Posiciones (se pueden ajustar a gusto) */
        .l1 {
            top: 40px;
            left: 40px;
        }

        .l2 {
            top: 120px;
            left: 20%;
        }

        .l3 {
            top: 200px;
            right: 15%;
        }

        .l4 {
            top: 60px;
            right: 50px;
        }

        .l5 {
            bottom: 180px;
            left: 10%;
        }

        .l6 {
            bottom: 150px;
            right: 10%;
        }

        .l7 {
            top: 300px;
            left: 5%;
        }

        .l8 {
            top: 400px;
            right: 25%;
        }

        .l9 {
            bottom: 250px;
            left: 30%;
        }

        .l10 {
            bottom: 100px;
            right: 30%;
        }

        header,
        footer {
            position: relative;
            z-index: 2;
            background: transparent;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        header {
            height: 150px;
        }

        header img {
            height: 100%;
        }

        main {
            position: relative;
            z-index: 2;
            min-height: calc(100vh - 270px);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .contenedor {
            background: rgba(255, 255, 255, 0.9);
            padding: 30px;
            border-radius: 10px;
            max-width: 400px;
            width: 100%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .contenedor h2 {
            text-align: center;
            margin-bottom: 20px;
            color: #333;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        form input,
        form button {
            padding: 10px;
            font-size: 1rem;
        }

        form input {
            border: 1px solid #ccc;
            border-radius: 5px;
        }


        footer {
            height: 120px;
        }

        footer img {
            max-height: 90px;
        }

        /* Responsividad */
        /* @media (max-width: 600px) {

            header,
            footer {
                height: 100px;
            }

            header img,
            footer img {
                max-height: 100%;
            }

            .contenedor {
                width: 90%;
            }
        } */
        @media (max-width: 600px) {
            .form-container {
                padding: 20px 12px;
            }

            .logo {
                width: 140px;
            }

            .form-container h2 {
                font-size: 1rem;
            }

            .div1,
            .div2 {
                font-size: 0.9rem;
            }

            .div2 h2 {
                font-size: 1rem;
                /* INTRANSFERIBLE más chico */
                word-break: break-word;
                line-height: 1.2;
            }

            .div2 h4 {
                font-size: 0.9rem;
                /* SIN VALOR COMERCIAL ajustado */
                word-break: break-word;
                line-height: 1.2;
            }

            button {
                font-size: 1rem;
                padding: 12px;
            }
        }