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

        body {
            font-family: 'Raleway', sans-serif;
            height: 100vh;
            overflow: hidden;
        }

        .login-container {
            display: flex;
            height: 100vh;
        }

        /* Lado Izquierdo - Branding */
        .left-panel {
            flex: 1;
            background: radial-gradient(ellipse at center, #404040 0%, #282828 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px;
            position: relative;
            overflow: hidden;
        }

        .left-panel::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(227, 179, 42, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            top: -150px;
            left: -150px;
            animation: float 25s infinite ease-in-out;
        }

        .left-panel::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(227, 179, 42, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -100px;
            right: -100px;
            animation: float 20s infinite ease-in-out reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(20px, 20px) scale(1.08); }
        }

        .logo-container {
            position: relative;
            z-index: 2;
            text-align: center;
            animation: fadeInScale 1.2s ease-out;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .logo-container img {
            width: 260px;
            height: 125px;
            object-fit: contain;
            margin-bottom: 25px;
            filter: brightness(1.15) drop-shadow(0 4px 20px rgba(227, 179, 42, 0.15));
            transition: all 0.4s ease;
        }

        .logo-container img:hover {
            transform: scale(1.05);
            filter: brightness(1.25) drop-shadow(0 6px 25px rgba(227, 179, 42, 0.25));
        }

        .copyright {
            color: #c0c0c0;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            line-height: 1.6;
            font-family: 'Caveat', cursive;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        /* Lado Derecho - Formulario */
        .right-panel {
            flex: 1;
            background: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px;
            position: relative;
            box-shadow: -15px 0 50px rgba(0, 0, 0, 0.08);
        }

        .form-wrapper {
            width: 100%;
            max-width: 380px;
            animation: fadeInRight 0.9s ease-out;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .form-header {
            margin-bottom: 35px;
            text-align: center;
        }

        .form-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .form-subtitle {
            color: #666;
            font-size: 0.9rem;
            font-weight: 400;
        }

        .user-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #bababa 0%, #e1e1e1 100%);
            padding: 12px 18px;
            border-radius: 10px;
            margin-bottom: 24px;
            border: 2px solid #e3b32a;
            animation: slideIn 0.6s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .user-icon {
            font-size: 1.1rem;
        }

        .user-email {
            color: #1a1a1a;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.85rem;
            letter-spacing: 0.3px;
        }

        .input-wrapper {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 0.9rem;
            font-family: 'Raleway', sans-serif;
            transition: all 0.3s ease;
            background: #fafafa;
            color: #1a1a1a;
        }

        .form-input:focus {
            outline: none;
            border-color: #e3b32a;
            background: #ffffff;
            box-shadow: 0 0 0 5px rgba(227, 179, 42, 0.12);
        }

        .form-input:hover {
            border-color: #b8b8b8;
            background: #ffffff;
        }

        .btn-primary {
            width: 100%;
            padding: 13px;
            background: linear-gradient(135deg, #e3b32a 0%, #d4a324 100%);
            color: #1a1a1a;
            border: none;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.35s ease;
            box-shadow: 0 5px 20px rgba(227, 179, 42, 0.35);
            margin-top: 10px;
            font-family: 'Raleway', sans-serif;
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(227, 179, 42, 0.45);
            background: linear-gradient(135deg, #f1c234 0%, #e3b32a 100%);
        }

        .btn-primary:active {
            transform: translateY(-1px);
        }

        .form-links {
            display: flex;
            justify-content: space-between;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 2px solid #f0f0f0;
        }

        .form-link {
            color: #666;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.25s ease;
            font-weight: 500;
        }

        .form-link:hover {
            color: #e3b32a;
            transform: translateX(2px);
        }

        .form-link.back::before {
            content: '← ';
            margin-right: 5px;
        }

        .recaptcha-notice {
    position: absolute;
    bottom: 30px;
    left: 40%;
    transform: translateX(-50%);
    text-align: center;
    color: #999;
    font-size: 0.7rem;
    line-height: 1.4;
    max-width: 420px;
    padding: 0 15px;
    white-space: nowrap;
}

.recaptcha-notice a {
    color: #e3b32a;
    text-decoration: none;
    transition: all 0.2s ease;
}

.recaptcha-notice a:hover {
    text-decoration: underline;
    color: #d4a324;
}
/* Para móviles - permitir múltiples líneas */
@media (max-width: 968px) {
    .recaptcha-notice {
        white-space: normal;
        line-height: 1.6;
        max-width: 380px;
    }
}

@media (max-width: 480px) {
    .recaptcha-notice {
        font-size: 0.65rem;
        max-width: 320px;
        padding: 0 10px;
    }
}

        /* Mensaje de error */
        .alert {
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 0.85rem;
            animation: slideDown 0.4s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .alert-error {
            background: #ffe6e6;
            border: 2px solid #ffcccc;
            color: #cc3333;
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .login-container {
                flex-direction: column;
            }

            .left-panel {
                flex: 0 0 auto;
                min-height: 300px;
                padding: 50px 30px;
            }

            .right-panel {
                flex: 1;
                box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.08);
                padding: 50px 30px;
            }

            .logo-container img {
                width: 220px;
                height: 105px;
            }

            .copyright {
                font-size: 1rem;
            }

            .form-title {
                font-size: 2rem;
            }

            .recaptcha-notice {
                position: static;
                transform: none;
                margin-top: 35px;
            }
        }

        @media (max-width: 480px) {
            .form-wrapper {
                max-width: 100%;
            }

            .form-links {
                flex-direction: column;
                gap: 14px;
                text-align: center;
            }

            .right-panel {
                padding: 40px 25px;
            }

            .left-panel {
                padding: 40px 25px;
                min-height: 250px;
            }

            .logo-container img {
                width: 200px;
                height: 96px;
            }

            .form-title {
                font-size: 1.75rem;
            }
        }
		
		.grecaptcha-badge {
    opacity: 0.3 !important;
    transition: opacity 0.3s ease;
}

.grecaptcha-badge:hover {
    opacity: 0.4 !important;
}
/* Todos los mensajes de error */
.alert, div[style*="background:#f8d7da"], div[style*="background: #f8d7da"] {
    font-size: 0.8rem !important;
    padding: 10px 12px !important;
    line-height: 1.4;
}