        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            color: #333;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        button {
            cursor: pointer;
            border: none;
            font-size: 14px;
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 500;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* Header */
        header {
            background-color: #fff;
            padding: 12px 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid #eee;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1920px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-image {
            width: 40px;
            height: 40px;
            margin-right: 8px;
        }

        .logo-text {
            color: #FFD600;
            font-weight: bold;
            font-size: 20px;
            margin-right: 6px;
        }

        .logo-beta {
            font-size: 10px;
            color: #777;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-desktop {
            display: flex;
            gap: 8px;
        }

        .btn {
            border: 1px solid #e0e0e0;
            background-color: transparent;
            transition: all 0.2s;
        }

        .btn-green {
            background-color: #22c55e;
            color: white;
            border: none;
        }

        .btn-green:hover {
            background-color: #16a34a;
             color: white;
            transform: translateY(+2px);
            transition-duration: 0.5s;
            box-shadow: 0px 15px 20px #15d15a;
        }

        .btn-yellow {
            background-color: #FFD600;
            color: black;
            border: none;
        }

        .btn-yellow:hover {
            background-color: #FFD600;
            color: white;
            transform: translateY(+2px);
            transition-duration: 0.5s;
            box-shadow: 0px 15px 20px #ffd50082;
        }

        .menu-mobile {
            display: none;
            background: none;
            border: none;
        }

        /* Login Section */
        .login-section {
            display: grid;
            grid-template-columns: 1fr;
        }

        .login-left {
            position: relative;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/17%20de%20mai.%20de%202025%2C%2018_54_27-yBSuGYtWwOI94H1IVXm5oiYust211I.png');
            background-size: cover;
            background-position: center;
            padding: 64px 32px;
            min-height: 500px;
        }

        .login-left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(155, 0, 18, 0.8);
            /* Vermelho semi-transparente */
            z-index: 1;
        }

        .login-content {
            position: relative;
            z-index: 2;
            /* Acima do overlay */
        }

        .login-title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 16px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .login-subtitle {
            font-size: 18px;
            margin-bottom: 32px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            max-width: 80%;
        }

        .login-right {
            background-color: #1e293b;
            color: white;
            padding: 64px 32px;
        }

        .form-container {
            max-width: 400px;
            margin: 0 auto;
        }

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

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-input {
            width: 100%;
            padding: 12px;
            border-radius: 4px;
            border: none;
            font-size: 16px;
        }

        .form-text {
            font-size: 12px;
            text-align: center;
            margin-top: 16px;
        }

        .form-link {
            text-decoration: underline;
            color: #FFD600;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            font-size: 14px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .forgot-password {
            color: #FFD600;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background-color: #1e293b;
            color: white;
            padding: 16px 0;
            border-top: 1px solid #334155;
            text-align: center;
            font-size: 14px;
        }

        .footer-link {
            text-decoration: underline;
            margin-top: 8px;
            display: inline-block;
        }

        /* Media Queries */
        @media (min-width: 768px) {
            .login-section {
                grid-template-columns: 1fr 1fr;
                min-height: calc(100vh - 65px - 81px);
                /* Altura total - header - footer */
            }

            .logo-image {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 767px) {
            .nav-desktop {
                display: none;
            }

            .menu-mobile {
                display: block;
            }
        }