
        .f-b {
            font-weight:600 !important;
        }

        :root {
            --primary-color: #6d28d9;
            --primary-light: #8b5cf6;
            --primary-dark: #4c1d95;
            --primary-gradient: linear-gradient(135deg, #6d28d9, #8b5cf6);
            --gray-light: #f3f4f6;
            --gray-medium: #e5e7eb;
            --gray-dark: #6b7280;
            --white: #ffffff;
            --black: #111827;
            --error-color: #ef4444;
            --success-color: #10b981;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease !important;
        }
                /* Scroll 100% compatible */
        ::-webkit-scrollbar { width: 6px; height: 6px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: #6d28d9; }

        * { 
            scrollbar-width: thin; 
            scrollbar-color: #6d28d9 #f1f1f1;
        }
        /* Scroll 100% compatible */

                /* Eliminar focus de toda la web */
        *:focus {
            outline: none !important;
        
        }

        *:focus-visible {
            outline: none !important;

        }

        *:focus-within {
            outline: none !important;

        }



        /* Para navegadores Webkit (Chrome, Safari) */
        *:focus {
            -webkit-tap-highlight-color: transparent !important;
            -webkit-focus-ring-color: transparent !important;
        }

        /* Para inputs específicos */
        input:focus, textarea:focus, select:focus, button:focus {
            outline: none !important;
        }

        @media (max-width: 500px) {
            /* 🔥 BLOQUEO TOTAL PARA TODOS LOS ELEMENTOS */
            * {
                -webkit-tap-highlight-color: transparent !important;
                -webkit-touch-callout: none !important;
                -webkit-user-select: none !important;
                -moz-user-select: none !important;
                -ms-user-select: none !important;
                user-select: none !important;
                touch-action: pan-x pan-y !important;
                max-touch-action: pan-x pan-y !important;
                -webkit-user-scalable: no !important;
                user-scalable: no !important;
            }

            /* Solo permitir selección en campos de texto */
            input, 
            select, 
            [contenteditable="true"] {
                -webkit-user-select: text !important;
                user-select: text !important;
                touch-action: auto !important;
                -webkit-user-scalable: yes !important;
                user-scalable: yes !important;
            }

            html, body {
                touch-action: pan-x pan-y !important;
            }
        }

        html, body {
            height: 100%;
            /* Cambia esto: */
            overflow: auto; /* En lugar de hidden */
            overscroll-behavior: none; /* Esto sí manténlo */
            -webkit-overflow-scrolling: touch; /* Mejor que 'none' */
            position: relative;
            -webkit-text-size-adjust: 100% !important;
            text-size-adjust: 100% !important;
        }

        a {
            text-decoration: none;
        }

        body {
            background-color: var(--gray-light);
            color: var(--black);
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 0;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%236d28d9" opacity="0.03" width="100" height="100"/></svg>');
        }

        .hidden {
            display: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 1.2rem 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .theme-toggle {
            display: flex;
            justify-content: center;
            padding: 15px;
            border-top: 1px solid #e7e7e7;
        }

        .theme-btn {
            background-color: #181818;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            outline: none;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .theme-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .theme-btn i {
            font-size: 16px;
        }

        .recerve-font {
            font-family: "Roboto", sans-serif;
            font-size: 40px;
            letter-spacing: 1px;
            color: #53475e;
            font-weight: 800;
            font-style: italic;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo i {
            color: var(--primary-color);
            font-size: 2rem;
        }

        .logo h1 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: -0.5px;
        }

        .logo-icon {
            height: 70px;
        }

        .logo-name {
            height: 45px;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem 0;
        }

        .auth-container {
            display: flex;
            width: 100%;
            height: 550px;
            max-width: 1000px;
            margin: 0 auto;
            background-color: var(--white);
            border-radius: 16px;
            border: 1px solid #d5d5d5;
            box-shadow: var(--shadow);
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .auth-form {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

        .m-vert {
            margin: auto;
        }

        /* Form Content */
        .form-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        #registerFormContent {
            overflow-y: auto;
            padding-right: 5px;
            padding-left: 5px;
        }

        .form-content.active {
            display: block;
        }

        .spinner {
            width: 15px;
            height: 15px;
            border: 2px solid #f3f3f3;
            border-top: 2px solid #900bee;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .auth-header {
            margin-bottom: 2rem;
            text-align: center;
        }

        .auth-header h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .auth-header p {
            color: var(--gray-dark);
            font-size: 1.1rem;
        }

        .form-group {
            margin-bottom: 10px;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 0.95rem;
        }

        .input-group {
            position: relative;
        }

        .input-group input,
        .input-group select {
            width: 100%;
            height: 40px;
            padding: 1rem 1rem 1rem 3rem;
            border: 1px solid var(--gray-medium);
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
            background-color: var(--gray-light);
        }

        .input-group input:focus,
        .input-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.2);
            background-color: var(--white);
        }

        .input-group i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-dark);
            font-size: 1.1rem;
        }

        .form-row {
            display: flex;
            gap: 1rem;
        }

        .form-row .form-group {
            flex: 1;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .remember-me input {
            accent-color: var(--primary-color);
            width: 18px;
            height: 18px;
        }

        .remember-me label {
            font-size: 0.9rem;
            color: var(--gray-dark);
            cursor: pointer;
        }

        .forgot-password a {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        .forgot-password a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* Modal de reCAPTCHA */
        #captchaContainer {
            display: flex;
            justify-content: center;
        }

        .captcha-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .captcha-modal.active {
            display: flex;
        }

        .captcha-content {
            background: var(--white);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            max-width: 400px;
            width: 90%;
            box-shadow: var(--shadow-hover);
        }

        .captcha-content h3 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .captcha-content p {
            color: var(--gray-dark);
            margin-bottom: 1.5rem;
        }

        .captcha-actions {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .captcha-actions .btn {
            flex: 1;
        }

        .btn-secondary {
            background: var(--gray-light);
            color: var(--gray-dark);
            border: 1px solid var(--gray-medium);
        }

        .btn-secondary:hover {
            background: var(--gray-medium);
        }

        .captcha-error {
            color: var(--error-color);
            font-size: 0.9rem;
            margin: 10px 0;
            text-align: center;
            display: none;
        }

        .location-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 0.95rem;
        }

        .location-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .location-input-wrapper input {
            width: 100%;
            height: 40px;
            padding: 1rem 3.5rem 1rem 1rem;
            border: 1px solid var(--gray-medium);
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
            background-color: var(--gray-light);
        }

        .location-input-wrapper input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.2);
            background-color: var(--white);
        }

        .location-btn {
            position: absolute;
            right: 5px;
            border: none;
            color: var(--primary-color);
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 10px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: #d9d2f7;
        }

        .location-btn:hover {
            background: var(--primary-gradient);
            color: var(--white);
        }



        .location-btn:disabled {
            background: var(--primary-gradient);
            color: var(--white);
        }

        .location-btn:disabled:hover {
            transform: none;
            background-color: transparent;
        }

        /* User Type Selector */
        .user-type-selector {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .user-type-option {
            flex: 1;
            text-align: center;
        }

        .user-type-option input {
            display: none;
        }

        .user-type-option label {
            display: block;
            padding: 1rem;
            border: 2px solid var(--gray-medium);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            background-color: var(--gray-light);
        }

        .user-type-option input:checked + label {
            border-color: var(--primary-color);
            background-color: rgba(109, 40, 217, 0.1);
            box-shadow: 0 4px 10px rgba(109, 40, 217, 0.2);
        }

        .user-type-option i {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        .user-type-option span {
            font-weight: 600;
            color: var(--primary-dark);
        }

        /* Terms Checkbox */
        .terms-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 10px;
            margin-top: -2px;
        }

        .terms-checkbox input {
            margin-top: 0.3rem;
            accent-color: var(--primary-color);
        }

        .terms-checkbox label {
            font-size: 9px;
            color: var(--gray-dark);
            line-height: 2.45;
        }

        .terms-checkbox a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

        .terms-checkbox a:hover {
            text-decoration: underline;
        }

        .btn {
            padding: 1rem;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 1.05rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            width: 100%;
        }

        .btn-location {
            margin-top: 10px;
            padding: 10px 15px;
            font-size: 14px;
            background: #f6eaff;
            color: var(--primary-color);
        }

        .btn-location:disabled {
            background: var(--primary-lighter);
        }

        .btn-primary {
            background: var(--primary-gradient);
            color: var(--white);
            box-shadow: 0 4px 10px rgba(109, 40, 217, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(109, 40, 217, 0.4);
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 2rem 0;
            color: var(--gray-dark);
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background-color: var(--gray-medium);
        }

        .divider span {
            padding: 0 1rem;
            font-size: 0.9rem;
        }

        .auth-footer {
            text-align: center;
            margin-top: 2rem;
            color: var(--gray-dark);
            font-size: 0.95rem;
        }

        .auth-footer a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .auth-footer a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* Alerts */
        .alert {
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            animation: fadeIn 0.5s ease;
        }

        .alert-error {
            background-color: #fef2f2;
            color: var(--error-color);
            border-left: 4px solid var(--error-color);
        }

        .alert-success {
            background-color: #f0fdf4;
            color: var(--success-color);
            border-left: 4px solid var(--success-color);
        }

        .recovery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            border-radius: 16px;
            padding: 20px;
            display: none;
            flex-direction: column;
            justify-content: center;
            z-index: 10;
            animation: slideIn 0.4s ease;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .recovery-overlay.active {
            display: flex;
        }

        .recovery-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .recovery-header h2 {
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            font-size: 2rem;
        }

        .recovery-header p {
            color: var(--gray-dark);
            font-size: 1.05rem;
        }

        .back-to-login {
            margin-top: 1.5rem;
            text-align: center;
        }

        .back-to-login a {
            color: var(--primary-color);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        .back-to-login a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* Auth Illustration */
        .auth-illustration {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 3rem;
            color: white;
            text-align: center;
            background-attachment: initial;
            background-position: bottom;
            background-size: cover;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3CradialGradient id='a' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%23FFFFFF'/%3E%3Cstop offset='1' stop-color='%23EEEEEE'/%3E%3C/radialGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='0' y1='750' x2='1550' y2='750'%3E%3Cstop offset='0' stop-color='%23f7f7f7'/%3E%3Cstop offset='1' stop-color='%23EEEEEE'/%3E%3C/linearGradient%3E%3Cpath id='s' fill='url(%23b)' d='M1549.2 51.6c-5.4 99.1-20.2 197.6-44.2 293.6c-24.1 96-57.4 189.4-99.3 278.6c-41.9 89.2-92.4 174.1-150.3 253.3c-58 79.2-123.4 152.6-195.1 219c-71.7 66.4-149.6 125.8-232.2 177.2c-82.7 51.4-170.1 94.7-260.7 129.1c-90.6 34.4-184.4 60-279.5 76.3C192.6 1495 96.1 1502 0 1500c96.1-2.1 191.8-13.3 285.4-33.6c93.6-20.2 185-49.5 272.5-87.2c87.6-37.7 171.3-83.8 249.6-137.3c78.4-53.5 151.5-114.5 217.9-181.7c66.5-67.2 126.4-140.7 178.6-218.9c52.3-78.3 96.9-161.4 133-247.9c36.1-86.5 63.8-176.2 82.6-267.6c18.8-91.4 28.6-184.4 29.6-277.4c0.3-27.6 23.2-48.7 50.8-48.4s49.5 21.8 49.2 49.5c0 0.7 0 1.3-0.1 2L1549.2 51.6z'/%3E%3Cg id='g'%3E%3Cuse href='%23s' transform='scale(0.12) rotate(60)'/%3E%3Cuse href='%23s' transform='scale(0.2) rotate(10)'/%3E%3Cuse href='%23s' transform='scale(0.25) rotate(40)'/%3E%3Cuse href='%23s' transform='scale(0.3) rotate(-20)'/%3E%3Cuse href='%23s' transform='scale(0.4) rotate(-30)'/%3E%3Cuse href='%23s' transform='scale(0.5) rotate(20)'/%3E%3Cuse href='%23s' transform='scale(0.6) rotate(60)'/%3E%3Cuse href='%23s' transform='scale(0.7) rotate(10)'/%3E%3Cuse href='%23s' transform='scale(0.835) rotate(-40)'/%3E%3Cuse href='%23s' transform='scale(0.9) rotate(40)'/%3E%3Cuse href='%23s' transform='scale(1.05) rotate(25)'/%3E%3Cuse href='%23s' transform='scale(1.2) rotate(8)'/%3E%3Cuse href='%23s' transform='scale(1.333) rotate(-60)'/%3E%3Cuse href='%23s' transform='scale(1.45) rotate(-30)'/%3E%3Cuse href='%23s' transform='scale(1.6) rotate(10)'/%3E%3C/g%3E%3C/defs%3E%3Cg %3E%3Cg transform=''%3E%3Ccircle fill='url(%23a)' r='3000'/%3E%3Cg opacity='0.5'%3E%3Ccircle fill='url(%23a)' r='2000'/%3E%3Ccircle fill='url(%23a)' r='1800'/%3E%3Ccircle fill='url(%23a)' r='1700'/%3E%3Ccircle fill='url(%23a)' r='1651'/%3E%3Ccircle fill='url(%23a)' r='1450'/%3E%3Ccircle fill='url(%23a)' r='1250'/%3E%3Ccircle fill='url(%23a)' r='1175'/%3E%3Ccircle fill='url(%23a)' r='900'/%3E%3Ccircle fill='url(%23a)' r='750'/%3E%3Ccircle fill='url(%23a)' r='500'/%3E%3Ccircle fill='url(%23a)' r='380'/%3E%3Ccircle fill='url(%23a)' r='250'/%3E%3C/g%3E%3Cg transform='rotate(-115.2 0 0)'%3E%3Cuse href='%23g' transform='rotate(10)'/%3E%3Cuse href='%23g' transform='rotate(120)'/%3E%3Cuse href='%23g' transform='rotate(240)'/%3E%3C/g%3E%3Ccircle fill-opacity='0' fill='url(%23a)' r='3000'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            transition: all 0.3s ease;
        }

        .illustration-icon {
            display: flex;
            gap: 8px;
            margin-bottom: 1.5rem;
            align-items: center;
        }

        .illustration-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .illustration-content p {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.6;
            color: #747474;
        }

        /* Footer */
        footer {
            background-color: #181818;
            color: var(--white);
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid #313131;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--primary-light);
        }

        .copyright {
            color: var(--gray-medium);
            font-size: 0.85rem;
        }

        /* Nuevos estilos para la navegación entre formularios */
        .form-navigation {
            text-align: center;
            padding-top: 10px;
            display: flex;
            justify-content: center;
            font-size: 0.9rem;
        }

        .form-navigation p {
            color: var(--gray-dark);
            margin-bottom: 0.5rem;
        }

        .form-navigation a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .form-navigation a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .form-title {
            text-align: center;
            margin-bottom: -10px;
            color: #8b5cf6;
            font-size: 22px;
            font-weight: 700;
        }

        .form-title-second {
            text-align: center;
            color: #777575;
            font-size: 11px;
            margin-bottom: 7px;
        }

        .logo-login {
            display: none;
        }

        /* Responsive Styles */
        @media (max-width: 900px) {
            .auth-illustration {
                display: none;
            }
            

            .form-title, .form-title-second {
                display: none;
            }

            .logo-login {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 5px;
                margin: 0 0 25px 0;
            }

            .recerve-font {
                font-size: 28px;
            }

            .logo-icon {
                height: 46px;
            }

        }



        @media (max-width: 767px) {
            .main-content {
                padding: 1.5rem 0;
            }
            
            .auth-header h2 {
                font-size: 1.8rem;
            }

           /* .form-row {
                flex-direction: column;
                gap: 0;
            } */

            .form-options {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
            
            .user-type-selector {
                flex-direction: column;
            }
            
            .footer-links {
                flex-direction: row;
                align-items: center;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {

            
            html, body {
                    position: fixed;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    overflow: hidden;
                }

                body {
                    background-color: #ffffff;
                }
                
                .main-content {
                    padding: 0;
                    height: 100vh;
                    height: 100dvh;
                    align-items: stretch;
                }
                
                .auth-container {
                    height: 100vh !important;
                    height: 100dvh !important;
                    max-height: 100vh !important;
                    border-radius: 0;
                    border: none;
                    margin: 0;
                    width: 100%;
                    overflow-y: auto;
                    -webkit-overflow-scrolling: touch;
                    display: flex;
                    flex-direction: column;
                    border: none;
                }
                
                .container {
                    padding: 0px;
                }

                .auth-form {
                    justify-content: center;
                    width: 100%;
                }
                
                footer {
                    display: none;
                }

        }