:root {
            --primary: #005cf5;
            --primary-hover: #004ecc;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --card-bg: rgba(11, 18, 30, 0.85);
            --card-border: rgba(255, 255, 255, 0.05);
            --input-bg: rgba(255, 255, 255, 0.03);
            --input-border: rgba(255, 255, 255, 0.1);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            min-height: 100vh;
            background: #070e17 url("{{ asset('storage/site/fundo-login.avif') }}") left center / cover no-repeat;
            position: relative;
        }
        body::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(7,14,23,0.2) 0%, rgba(7,14,23,0.8) 40%, rgba(7,14,23,1) 50%, rgba(7,14,23,1) 100%);
            z-index: 1;
        }
        
        .login-wrapper {
            display: flex;
            min-height: 100vh;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Left Column */
        .login-left {
            flex: 1.2;
            display: flex;
            flex-direction: column;
            padding: 60px 80px;
        }
        .left-content {
            display: flex;
            flex-direction: column;
            height: 100%;
            max-width: 500px;
        }
        
        .logo {
            margin-bottom: auto;
        }
        .logo img {
            height: 55px;
            object-fit: contain;
        }

        .left-content h1 {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #fff;
            letter-spacing: -1px;
        }
        .left-content h1 span {
            color: var(--primary);
        }
        .left-content > p.subtitle {
            font-size: 15px;
            line-height: 1.6;
            color: #cbd5e1;
            margin-bottom: 50px;
            max-width: 380px;
        }

        .features {
            display: flex;
            gap: 30px;
            margin-bottom: auto;
        }
        .feature {
            flex: 1;
        }
        .feat-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: rgba(0, 92, 245, 0.05);
            border: 1px solid rgba(0, 92, 245, 0.2);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .feat-icon svg {
            width: 28px;
            height: 28px;
        }
        .feature strong {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .feature span {
            display: block;
            font-size: 12px;
            color: #94a3b8;
            line-height: 1.5;
        }

        .copyright {
            font-size: 13px;
            color: #64748b;
            margin-top: 40px;
        }

        /* Right Column */
        .login-right {
            flex: 1;
            max-width: 650px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }
        .login-container {
            width: 100%;
            max-width: 480px;
        }
        .card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 50px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
        }

        .lock-icon-wrap {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(0, 92, 245, 0.03);
            border: 1px solid rgba(0, 92, 245, 0.2);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }
        .lock-icon-wrap svg {
            width: 26px;
            height: 26px;
        }
        
        .card h2 {
            font-size: 26px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 12px;
            color: #fff;
            letter-spacing: -0.5px;
        }
        .card p.subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .form-group {
            margin-bottom: 24px;
        }
        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #e2e8f0;
            margin-bottom: 10px;
        }
        .input-wrap {
            position: relative;
            display: flex;
            align-items: center;
        }
        .input-icon {
            position: absolute;
            left: 16px;
            width: 20px;
            height: 20px;
            color: #64748b;
            pointer-events: none;
        }
        input[type="email"], input[type="password"] {
            width: 100%;
            height: 54px;
            padding: 0 16px 0 48px;
            border: 1px solid var(--input-border);
            border-radius: 12px;
            color: #fff;
            background: var(--input-bg);
            font-family: inherit;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        input:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 0 4px rgba(0, 92, 245, 0.1);
        }
        input::placeholder {
            color: #64748b;
        }
        .toggle-password {
            position: absolute;
            right: 16px;
            background: none;
            border: none;
            color: #64748b;
            cursor: pointer;
            padding: 0;
            display: flex;
        }
        .toggle-password svg {
            width: 20px;
            height: 20px;
        }
        .toggle-password:hover {
            color: #fff;
        }

        .form-options {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
        }
        .remember {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            font-size: 13px;
            color: #cbd5e1;
            user-select: none;
        }
        .remember input {
            accent-color: var(--primary);
            width: 16px;
            height: 16px;
            cursor: pointer;
        }
        .forgot-link {
            font-size: 13px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        .forgot-link:hover {
            text-decoration: underline;
        }

        .btn-submit {
            width: 100%;
            height: 54px;
            border: none;
            border-radius: 12px;
            color: #fff;
            background: var(--primary);
            font-family: inherit;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .btn-submit:hover {
            background: var(--primary-hover);
        }

        .error-box {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: #ef4444;
            padding: 14px 16px;
            border-radius: 12px;
            font-size: 14px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        @media (max-width: 1024px) {
            body {
                background: #070e17 url("{{ asset('storage/site/fundo-login.avif') }}") left center / cover no-repeat;
            }
            body::before {
                background: rgba(7,14,23,0.75); /* Overlay suave no mobile */
            }
            .login-wrapper { flex-direction: column; }
            .login-left { display: none; }
            .login-right { max-width: 100%; padding: 20px; }
            .login-container { max-width: 100%; }
            .card { padding: 40px 24px; border-radius: 20px; }
            .card h2 { font-size: 22px; }
            .card p.subtitle { font-size: 13px; margin-bottom: 30px; }
            .form-options { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
            .remember { font-size: 13px; }
            .btn-submit { font-size: 14px; padding: 0 16px; height: 50px; }
            input[type="email"], input[type="password"] { font-size: 14px; height: 50px; }
        }


.auth-login-svg-1 { width:18px;height:18px }