  :root {
            --primary-orange: #f36c21;
            --dark-bg: #1a1a1a;
            --card-border-radius: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f1f5f9; /* Cor de fundo da sua main */
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
        }

        .login-card {
            width: 100%;
            max-width: 420px;
            background: white;
            border: none;
            border-radius: var(--card-border-radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
        } 

        .login-header {
            background:  green;
            color: white !important;
            padding: 30px;
            text-align: center;
            
        }

        .login-header h2 {
            font-weight: 700;
            font-size: 1.25rem;
            letter-spacing: 1px;
            margin: 0;
            color: white;
        }

        .login-body {
            padding: 40px 30px;
        }

        .form-label {
            font-weight: 600;
            color: #475569;
            font-size: 0.85rem;
        }

        .input-group-text {
            background-color: #f8f9fa;
            border-right: none;
            color: #64748b;
        }

        .form-control {
            border-left: none;
            padding: 12px;
            font-size: 0.95rem;
        }

        .form-control:focus {
            border-color: #dee2e6;
            box-shadow: none;
        }

        .btn-access {
            background-color: var(--primary-orange);
            border: none;
            padding: 12px;
            font-weight: 600;
            border-radius: 8px;
            width: 100%;
            margin-top: 10px;
            transition: 0.3s;
            color: white;
        }

        .btn-access:hover {
            background-color: #d4561a;
            transform: translateY(-2px);
            color: white;
        }

        .alert-error {
            border-radius: 8px;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

        footer-login {
            text-align: center;
            margin-top: 360px;
            font-size: 0.8rem;
            color: #94a3b8;
        }