.auth-wrapper {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--surface); /* Fundo cinza claro do seu style.css */
            padding: 1rem;
        }

        .login-card {
            width: 100%;
            max-width: 400px;
            padding: 2.5rem;
            background-color: var(--background);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl); /* Sombra mais profunda para destaque */
            border: 1px solid var(--border);
            animation: slideDown 0.5s ease;
        }

        .login-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .login-header .logo {
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .login-footer {
            margin-top: 1.5rem;
            text-align: center;
            font-size: 0.875rem;
        }

        .forgot-password {
            display: block;
            text-align: right;
            margin-top: -1rem;
            margin-bottom: 1.5rem;
            font-size: 0.75rem;
            font-weight: 500;
        }

        /* Ajuste do botão para ocupar largura total */
        .btn-login {
            width: 100%;
            justify-content: center;
            padding: 0.875rem;
            font-size: 1rem;
        }