 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            min-height: 100vh;
            color: white;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 50px;
        }

        .logo {
            width: 100px;
            height: 100px;
            background: gold;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            font-weight: bold;
            color: black;
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
        }

        .header h1 {
            color: gold;
            font-size: 36px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .header p {
            color: #ccc;
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Grid de formularios */
        .formularios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .formulario-card {
            background: rgba(26, 26, 26, 0.9);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            border: 2px solid rgba(255, 215, 0, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .formulario-card:hover {
            transform: translateY(-10px);
            border-color: gold;
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
        }

        .formulario-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: gold;
            transition: all 0.3s ease;
        }

        .formulario-card:hover .formulario-icon {
            background: gold;
            color: black;
            transform: scale(1.1) rotate(10deg);
        }

        .formulario-card h2 {
            color: gold;
            font-size: 24px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .formulario-card p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .formulario-badge {
            display: inline-block;
            background: rgba(255, 215, 0, 0.1);
            color: gold;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .formulario-features {
            text-align: left;
            margin-bottom: 25px;
        }

        .formulario-features li {
            color: #ddd;
            margin: 10px 0;
            padding-left: 25px;
            position: relative;
            list-style: none;
        }

        .formulario-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: gold;
            font-weight: bold;
        }

        .btn-select {
            display: inline-block;
            background: linear-gradient(135deg, gold 0%, #e6c200 100%);
            color: black;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-select:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
            text-decoration: none;
            color: black;
        }

        /* Mensajes flash */
        .flash-messages {
            max-width: 800px;
            margin: 20px auto;
        }

        .alert {
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .alert-success {
            background: rgba(76, 175, 80, 0.1);
            border: 1px solid rgba(76, 175, 80, 0.3);
            color: #4caf50;
        }

        .alert-error {
            background: rgba(255, 87, 87, 0.1);
            border: 1px solid rgba(255, 87, 87, 0.3);
            color: #ff5757;
        }

        .alert i {
            font-size: 20px;
        }

        /* Volver al inicio */
        .back-home {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 215, 0, 0.3);
        }

        .back-home a {
            color: gold;
            text-decoration: none;
            font-size: 18px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .back-home a:hover {
            color: #ffd700;
            text-decoration: underline;
            transform: translateX(-5px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .formularios-grid {
                grid-template-columns: 1fr;
            }
            
            .formulario-card {
                padding: 30px 20px;
            }
            
            .header h1 {
                font-size: 28px;
            }
            
            .logo {
                width: 80px;
                height: 80px;
                font-size: 32px;
            }
        }