        :root { --accent: #63B3ED; --accent-hover: #4299e1; --bg-panel: #1A202C; --text-main: #E2E8F0; --text-muted: #A0AEC0; --error: #F56565; }

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0 0 0 / 56%);
    z-index: -1;
}

        body {
            background-image: url('/assets/rede.png'); background-size: cover; background-position: center;
            font-family: 'Inter', sans-serif; margin: 0; min-height: 100vh;
            display: flex; align-items: center; justify-content: center;
            backdrop-filter: blur(5px);

    background-color: #1A202C; /* Cor de fundo caso a imagem falhe */


        }
        .wrapper {
            display: flex; width: 900px; max-width: 95%;
                max-height: 558px;
            background: rgba(26, 32, 44, 0.96); border-radius: 16px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8); overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            min-height: 550px;
            border-radius: 12px;
        }

.mobile-logo {
    display: none;
    max-width: 195px;
    margin: 7px auto 0px auto;
}

        /* --- Lado Esquerdo (Formulário) --- */
        .left-panel { flex: 1.3; padding: 50px; display: flex; flex-direction: column; justify-content: center; }
        
        h1 { color: var(--accent); font-family: 'Orbitron'; margin: 0 0 10px 0; font-size: 2rem; }
        p.desc { color: var(--text-muted); margin-bottom: 30px; font-size: 0.95rem; line-height: 1.6; }

        .input-box { position: relative; margin-bottom: 20px; }
        .input-box i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #718096; font-size: 1.1rem; transition: color 0.3s; }
        
        input {
            width: 100%; padding: 16px 16px 16px 50px; background: #0f131a;
            border: 2px solid #2D3748; border-radius: 10px; color: white;
            font-size: 1rem; box-sizing: border-box; transition: all 0.3s ease;
        }
        input:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.2); }
        input:focus + i { color: var(--accent); }

        button {
            width: 100%; padding: 16px; background: var(--accent); border: none;
            border-radius: 10px; color: white; font-weight: bold; cursor: pointer;
            font-family: 'Orbitron'; transition: 0.3s; font-size: 1rem; margin-top: 10px;
            text-transform: uppercase; letter-spacing: 1px;
        }
        button:hover { background: var(--accent-hover); transform: translateY(-2px); }
        button:disabled { opacity: 0.7; cursor: not-allowed; }

        .error-msg { color: #F56565; background: rgba(245, 101, 101, 0.1); padding: 12px; border-radius: 8px; font-size: 0.9rem; margin-bottom: 20px; display: none; border: 1px solid rgba(245, 101, 101, 0.2); display: flex; align-items: center; }
        .error-msg i { margin-right: 10px; }

        .links { margin-top: 25px; text-align: center; font-size: 0.9rem; color: var(--text-muted); }
        .links a { color: var(--accent); text-decoration: none; font-weight: 600; transition: color 0.2s; }
        .links a:hover { color: white; text-decoration: none; }

        /* --- Lado Direito (Visual/Segurança) --- */
        .right-panel { flex: 0.9; background: linear-gradient(180deg, rgba(44, 82, 130, 0.2) 0%, rgba(26, 32, 44, 0.4) 100%); border-left: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; }
        
        .sec-header {
            height: 200px; background: linear-gradient(135deg, #2b6cb0 0%, #1a202c 100%);
            display: flex; align-items: center; justify-content: center;
            position: relative; margin-bottom: 40px;
        }
        
        .sec-avatar {
            width: 110px; height: 110px; background: #1A202C; border: 6px solid #2D3748;
            border-radius: 50%; position: absolute; bottom: -55px; left: 50%;
            transform: translateX(-50%); display: flex; align-items: center; justify-content: center;
            color: var(--accent); font-size: 3rem; box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }

        .sec-body { padding: 20px 40px; text-align: center; }
        .sec-body h2 { color: white; font-family: 'Orbitron'; font-size: 1.6rem; margin: 0; }
        .sec-body p { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px; }

        .info-list { margin-top: 40px; text-align: left; }
        .info-item { display: flex; align-items: center; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .info-item:last-child { border: none; }
        
        .info-icon { width: 45px; height: 45px; background: rgba(255,255,255,0.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-right: 15px; font-size: 1.2rem; }
        .info-text span { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
        .info-text strong { color: white; font-size: 1rem; font-weight: 600; }

        @media (max-width: 900px) {
            .wrapper { flex-direction: column; height: auto;     min-height: 585px;}
            .right-panel { display: none; }
            .left-panel { padding: 30px; padding-top: 3px; }

            .mobile-logo {
                display: block;
            }

            h1 {
                text-align: center;
            }

            p.desc {
                text-align: center;
            }

            .mobile-logo {
                animation: fadeDown 0.6s ease;
            }

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

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }